goliath: move to GRUB 2 from systemd-boot

This commit is contained in:
Kat Inskip 2023-12-19 18:21:05 -08:00
parent c5426d58af
commit cdceb9d13d
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
7 changed files with 260 additions and 41 deletions

View file

@ -1,42 +1,40 @@
{pkgs, ...}: {
config = {
home.packages = with pkgs; [
# Password manager
bitwarden
home.packages = with pkgs; [
# Password manager
bitwarden
# Task managers
btop
htop
# Task managers
btop
htop
# Mail
thunderbird
# Mail
thunderbird
# Music
spotify
# Music
spotify
# Chat
discord
nheko # Matrix
tdesktop # Telegram
dino # XMPP
signal-desktop
# Chat
discord
nheko # Matrix
tdesktop # Telegram
dino # XMPP
signal-desktop
# Exocortex
obsidian
# Exocortex
obsidian
# Archivery
unzip
zip
p7zip
# Archivery
unzip
zip
p7zip
# Misc
gimp-with-plugins # GIMP
exiftool # EXIF Stripping
lm_sensors # Sensor Data
cryptsetup # Encrypted block devices
yubikey-manager # Yubikey
yt-dlp # Downloading media
v4l-utils # Webcam
];
};
# Misc
gimp-with-plugins # GIMP
exiftool # EXIF Stripping
lm_sensors # Sensor Data
cryptsetup # Encrypted block devices
yubikey-manager # Yubikey
yt-dlp # Downloading media
v4l-utils # Webcam
];
}