Compare commits
8 Commits
3cd24ab4cd
...
7d34d34dd4
Author | SHA1 | Date | |
---|---|---|---|
7d34d34dd4 | |||
cb06b6ab45 | |||
82cbaec894 | |||
555eec73c9 | |||
79302bda83 | |||
3887bd1d65 | |||
7691e580b8 | |||
cf44e54eba |
@ -2,4 +2,4 @@ title Arch Linux
|
|||||||
linux /vmlinuz-linux
|
linux /vmlinuz-linux
|
||||||
initrd /amd-ucode.img
|
initrd /amd-ucode.img
|
||||||
initrd /initramfs-linux-fallback.img
|
initrd /initramfs-linux-fallback.img
|
||||||
options rd.luks.name=3927d3f3-175f-4b72-9e05-395ef5664c81=cryptlvm rd.luks.options=discard root=/dev/ssd1/root resume=/dev/ssd1/swap rw add_efi_memmap kernel=30
|
options rd.luks.name=e7ff5b82-f145-4fae-be2a-388314977783=cryptlvm rd.luks.options=discard root=/dev/ssd/root resume=/dev/ssd/swap rw add_efi_memmap kernel=30
|
||||||
|
@ -2,4 +2,4 @@ title Arch Linux
|
|||||||
linux /vmlinuz-linux
|
linux /vmlinuz-linux
|
||||||
initrd /amd-ucode.img
|
initrd /amd-ucode.img
|
||||||
initrd /initramfs-linux.img
|
initrd /initramfs-linux.img
|
||||||
options rd.luks.name=3927d3f3-175f-4b72-9e05-395ef5664c81=cryptlvm rd.luks.options=discard root=/dev/ssd1/root resume=/dev/ssd1/swap rw add_efi_memmap kernel=30
|
options rd.luks.name=e7ff5b82-f145-4fae-be2a-388314977783=cryptlvm rd.luks.options=discard root=/dev/ssd/root resume=/dev/ssd/swap rw add_efi_memmap kernel=30
|
||||||
|
99
etc/sudoers
Normal file
99
etc/sudoers
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
## sudoers file.
|
||||||
|
##
|
||||||
|
## This file MUST be edited with the 'visudo' command as root.
|
||||||
|
## Failure to use 'visudo' may result in syntax or file permission errors
|
||||||
|
## that prevent sudo from running.
|
||||||
|
##
|
||||||
|
## See the sudoers man page for the details on how to write a sudoers file.
|
||||||
|
##
|
||||||
|
|
||||||
|
##
|
||||||
|
## Host alias specification
|
||||||
|
##
|
||||||
|
## Groups of machines. These may include host names (optionally with wildcards),
|
||||||
|
## IP addresses, network numbers or netgroups.
|
||||||
|
# Host_Alias WEBSERVERS = www1, www2, www3
|
||||||
|
|
||||||
|
##
|
||||||
|
## User alias specification
|
||||||
|
##
|
||||||
|
## Groups of users. These may consist of user names, uids, Unix groups,
|
||||||
|
## or netgroups.
|
||||||
|
# User_Alias ADMINS = millert, dowdy, mikef
|
||||||
|
|
||||||
|
##
|
||||||
|
## Cmnd alias specification
|
||||||
|
##
|
||||||
|
## Groups of commands. Often used to group related commands together.
|
||||||
|
# Cmnd_Alias PROCESSES = /usr/bin/nice, /bin/kill, /usr/bin/renice, \
|
||||||
|
# /usr/bin/pkill, /usr/bin/top
|
||||||
|
# Cmnd_Alias REBOOT = /sbin/halt, /sbin/reboot, /sbin/poweroff
|
||||||
|
|
||||||
|
##
|
||||||
|
## Defaults specification
|
||||||
|
##
|
||||||
|
## You may wish to keep some of the following environment variables
|
||||||
|
## when running commands via sudo.
|
||||||
|
##
|
||||||
|
## Locale settings
|
||||||
|
# Defaults env_keep += "LANG LANGUAGE LINGUAS LC_* _XKB_CHARSET"
|
||||||
|
##
|
||||||
|
## Run X applications through sudo; HOME is used to find the
|
||||||
|
## .Xauthority file. Note that other programs use HOME to find
|
||||||
|
## configuration files and this may lead to privilege escalation!
|
||||||
|
# Defaults env_keep += "HOME"
|
||||||
|
##
|
||||||
|
## X11 resource path settings
|
||||||
|
# Defaults env_keep += "XAPPLRESDIR XFILESEARCHPATH XUSERFILESEARCHPATH"
|
||||||
|
##
|
||||||
|
## Desktop path settings
|
||||||
|
# Defaults env_keep += "QTDIR KDEDIR"
|
||||||
|
##
|
||||||
|
## Allow sudo-run commands to inherit the callers' ConsoleKit session
|
||||||
|
# Defaults env_keep += "XDG_SESSION_COOKIE"
|
||||||
|
##
|
||||||
|
## Uncomment to enable special input methods. Care should be taken as
|
||||||
|
## this may allow users to subvert the command being run via sudo.
|
||||||
|
# Defaults env_keep += "XMODIFIERS GTK_IM_MODULE QT_IM_MODULE QT_IM_SWITCHER"
|
||||||
|
##
|
||||||
|
## Uncomment to use a hard-coded PATH instead of the user's to find commands
|
||||||
|
# Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
||||||
|
##
|
||||||
|
## Uncomment to send mail if the user does not enter the correct password.
|
||||||
|
# Defaults mail_badpass
|
||||||
|
##
|
||||||
|
## Uncomment to enable logging of a command's output, except for
|
||||||
|
## sudoreplay and reboot. Use sudoreplay to play back logged sessions.
|
||||||
|
# Defaults log_output
|
||||||
|
# Defaults!/usr/bin/sudoreplay !log_output
|
||||||
|
# Defaults!/usr/local/bin/sudoreplay !log_output
|
||||||
|
# Defaults!REBOOT !log_output
|
||||||
|
Defaults env_reset,timestamp_timeout=1440
|
||||||
|
|
||||||
|
##
|
||||||
|
## Runas alias specification
|
||||||
|
##
|
||||||
|
|
||||||
|
##
|
||||||
|
## User privilege specification
|
||||||
|
##
|
||||||
|
root ALL=(ALL) ALL
|
||||||
|
default ALL=(ALL) ALL
|
||||||
|
|
||||||
|
## Uncomment to allow members of group wheel to execute any command
|
||||||
|
# %wheel ALL=(ALL) ALL
|
||||||
|
|
||||||
|
## Same thing without a password
|
||||||
|
# %wheel ALL=(ALL) NOPASSWD: ALL
|
||||||
|
|
||||||
|
## Uncomment to allow members of group sudo to execute any command
|
||||||
|
# %sudo ALL=(ALL) ALL
|
||||||
|
|
||||||
|
## Uncomment to allow any user to run sudo if they know the password
|
||||||
|
## of the user they are running the command as (root by default).
|
||||||
|
# Defaults targetpw # Ask for the password of the target user
|
||||||
|
# ALL ALL=(ALL) ALL # WARNING: only use this together with 'Defaults targetpw'
|
||||||
|
|
||||||
|
## Read drop-in files from /etc/sudoers.d
|
||||||
|
## (the '#' here does not indicate a comment)
|
||||||
|
#includedir /etc/sudoers.d
|
54
packages.txt
54
packages.txt
@ -11,40 +11,30 @@ arduino-ide-bin
|
|||||||
asdf-vm
|
asdf-vm
|
||||||
atomicparsley
|
atomicparsley
|
||||||
atool
|
atool
|
||||||
autoconf
|
|
||||||
automake
|
|
||||||
base
|
base
|
||||||
bash
|
base-devel
|
||||||
bash-completion
|
bash-completion
|
||||||
beets
|
beets
|
||||||
bind
|
bind
|
||||||
binutils
|
|
||||||
bison
|
|
||||||
blueman
|
blueman
|
||||||
brightnessctl
|
brightnessctl
|
||||||
bzip2
|
|
||||||
calibre
|
calibre
|
||||||
cbonsai
|
cbonsai
|
||||||
ccache
|
ccache
|
||||||
cheese
|
cheese
|
||||||
chromium
|
chromium
|
||||||
cnrdrvcups-lb
|
cnrdrvcups-lb
|
||||||
coreutils
|
|
||||||
cowsay
|
cowsay
|
||||||
cpupower
|
cpupower
|
||||||
cpupower-gui
|
cpupower-gui
|
||||||
cryptsetup
|
|
||||||
cups-pdf
|
cups-pdf
|
||||||
darktable
|
darktable
|
||||||
device-mapper
|
|
||||||
dhcpcd
|
dhcpcd
|
||||||
dialog
|
dialog
|
||||||
diffutils
|
|
||||||
dino
|
dino
|
||||||
direnv
|
direnv
|
||||||
downgrade
|
downgrade
|
||||||
dxvk-bin
|
dxvk-bin
|
||||||
e2fsprogs
|
|
||||||
efibootmgr
|
efibootmgr
|
||||||
electrum
|
electrum
|
||||||
elinks
|
elinks
|
||||||
@ -53,18 +43,12 @@ etcher-bin
|
|||||||
evince
|
evince
|
||||||
evolution
|
evolution
|
||||||
f2fs-tools
|
f2fs-tools
|
||||||
fakeroot
|
|
||||||
fcitx5-chinese-addons
|
fcitx5-chinese-addons
|
||||||
fcitx5-configtool
|
fcitx5-configtool
|
||||||
fcitx5-gtk
|
fcitx5-gtk
|
||||||
fcitx5-pinyin-zhwiki
|
fcitx5-pinyin-zhwiki
|
||||||
fcitx5-qt
|
fcitx5-qt
|
||||||
fcitx5-solarized
|
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
file
|
|
||||||
filesystem
|
|
||||||
findutils
|
|
||||||
flex
|
|
||||||
font-manager
|
font-manager
|
||||||
fortune-mod
|
fortune-mod
|
||||||
fortune-mod-calvin
|
fortune-mod-calvin
|
||||||
@ -83,25 +67,17 @@ freerdp
|
|||||||
fwbuilder
|
fwbuilder
|
||||||
fwupd
|
fwupd
|
||||||
gamemode
|
gamemode
|
||||||
gawk
|
|
||||||
gcc
|
|
||||||
gcc-libs
|
|
||||||
gdlauncher-bin
|
gdlauncher-bin
|
||||||
gedit
|
gedit
|
||||||
gettext
|
|
||||||
gimp
|
gimp
|
||||||
git
|
git
|
||||||
git-lfs
|
git-lfs
|
||||||
glibc
|
|
||||||
gnome-disk-utility
|
gnome-disk-utility
|
||||||
gnome-firmware
|
gnome-firmware
|
||||||
gnome-keyring
|
|
||||||
gnome-sound-recorder
|
gnome-sound-recorder
|
||||||
gnu-free-fonts
|
|
||||||
gnu-netcat
|
gnu-netcat
|
||||||
gparted
|
gparted
|
||||||
gphoto2
|
gphoto2
|
||||||
grep
|
|
||||||
grim
|
grim
|
||||||
grub
|
grub
|
||||||
gsmartcontrol
|
gsmartcontrol
|
||||||
@ -113,7 +89,7 @@ gtk-engine-murrine
|
|||||||
gutenprint
|
gutenprint
|
||||||
gvfs-gphoto2
|
gvfs-gphoto2
|
||||||
gwakeonlan
|
gwakeonlan
|
||||||
gzip
|
hamradio-menus
|
||||||
handbrake
|
handbrake
|
||||||
hddtemp
|
hddtemp
|
||||||
hexedit
|
hexedit
|
||||||
@ -125,8 +101,6 @@ iio-sensor-proxy
|
|||||||
inkscape
|
inkscape
|
||||||
inotify-tools
|
inotify-tools
|
||||||
iotop
|
iotop
|
||||||
iproute2
|
|
||||||
iputils
|
|
||||||
itstool
|
itstool
|
||||||
iw
|
iw
|
||||||
jammr
|
jammr
|
||||||
@ -162,7 +136,6 @@ libretro-shaders-slang
|
|||||||
libva-mesa-driver
|
libva-mesa-driver
|
||||||
libva-utils
|
libva-utils
|
||||||
libvncserver
|
libvncserver
|
||||||
licenses
|
|
||||||
linux
|
linux
|
||||||
linux-firmware
|
linux-firmware
|
||||||
linux-firmware-qlogic
|
linux-firmware-qlogic
|
||||||
@ -173,8 +146,6 @@ lshw
|
|||||||
lsp-plugins
|
lsp-plugins
|
||||||
ltunify-git
|
ltunify-git
|
||||||
lvm2
|
lvm2
|
||||||
m4
|
|
||||||
make
|
|
||||||
mako
|
mako
|
||||||
mallard-ducktype
|
mallard-ducktype
|
||||||
man-db
|
man-db
|
||||||
@ -217,37 +188,28 @@ opustags
|
|||||||
overdue
|
overdue
|
||||||
p7zip
|
p7zip
|
||||||
package-query
|
package-query
|
||||||
pacman
|
|
||||||
papirus-icon-theme
|
papirus-icon-theme
|
||||||
patch
|
|
||||||
pavucontrol
|
pavucontrol
|
||||||
pciutils
|
|
||||||
perl
|
|
||||||
perl-image-exiftool
|
perl-image-exiftool
|
||||||
perl-rename
|
perl-rename
|
||||||
picard
|
picard
|
||||||
piper
|
piper
|
||||||
pipewire-alsa
|
pipewire-alsa
|
||||||
pipewire-jack
|
|
||||||
pipewire-pulse
|
pipewire-pulse
|
||||||
pkgconf
|
|
||||||
pkgstats
|
pkgstats
|
||||||
playerctl
|
playerctl
|
||||||
playonlinux
|
playonlinux
|
||||||
polkit-gnome
|
polkit-gnome
|
||||||
postgresql-libs
|
postgresql-libs
|
||||||
prismlauncher
|
prismlauncher
|
||||||
power-profiles-daemon
|
|
||||||
powertop
|
|
||||||
procps-ng
|
|
||||||
psensor
|
psensor
|
||||||
psmisc
|
|
||||||
pv
|
pv
|
||||||
python-axolotl
|
python-axolotl
|
||||||
python-levenshtein
|
python-levenshtein
|
||||||
python-matplotlib
|
python-matplotlib
|
||||||
python-mutagen
|
python-mutagen
|
||||||
python-pip
|
python-pip
|
||||||
|
python-pyasyncore
|
||||||
python-pyenchant
|
python-pyenchant
|
||||||
python-pylast
|
python-pylast
|
||||||
python-pynvim
|
python-pynvim
|
||||||
@ -264,8 +226,6 @@ retroarch-assets-xmb
|
|||||||
rofi
|
rofi
|
||||||
rsync
|
rsync
|
||||||
seahorse
|
seahorse
|
||||||
sed
|
|
||||||
shadow
|
|
||||||
shellcheck
|
shellcheck
|
||||||
shotcut
|
shotcut
|
||||||
simple-scan
|
simple-scan
|
||||||
@ -278,18 +238,15 @@ stalonetray
|
|||||||
steam
|
steam
|
||||||
sudo
|
sudo
|
||||||
sway
|
sway
|
||||||
|
swaybg
|
||||||
swayidle
|
swayidle
|
||||||
swaylock
|
swaylock
|
||||||
syncplay
|
syncplay
|
||||||
syncthing
|
syncthing
|
||||||
syncthing-gtk
|
syncthing-gtk
|
||||||
sysfsutils
|
sysfsutils
|
||||||
systemd
|
|
||||||
systemd-sysvcompat
|
|
||||||
systemd-ui
|
systemd-ui
|
||||||
tar
|
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
texinfo
|
|
||||||
tlp
|
tlp
|
||||||
tmux
|
tmux
|
||||||
traceroute
|
traceroute
|
||||||
@ -300,12 +257,10 @@ ttf-ibm-plex
|
|||||||
ttf-joypixels
|
ttf-joypixels
|
||||||
ttf-ms-fonts
|
ttf-ms-fonts
|
||||||
ttf-opensans
|
ttf-opensans
|
||||||
ttf-symbola-free
|
|
||||||
ttf-ubuntu-font-family
|
ttf-ubuntu-font-family
|
||||||
unicode-emoji
|
unicode-emoji
|
||||||
upd72020x-fw
|
upd72020x-fw
|
||||||
usbutils
|
usbutils
|
||||||
util-linux
|
|
||||||
vi
|
vi
|
||||||
vim
|
vim
|
||||||
vkd3d
|
vkd3d
|
||||||
@ -324,7 +279,6 @@ wayvnc
|
|||||||
wd719x-firmware
|
wd719x-firmware
|
||||||
wdisplays
|
wdisplays
|
||||||
wf-recorder
|
wf-recorder
|
||||||
which
|
|
||||||
wine-staging
|
wine-staging
|
||||||
winetricks
|
winetricks
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
|
Loading…
Reference in New Issue
Block a user