Compare commits

...

4 Commits

Author SHA1 Message Date
4414e89b97 flatseal 2025-06-23 14:37:28 +02:00
30fb66656f qalculate 2025-06-23 14:32:36 +02:00
3b74638bf6 obsidian 2025-06-23 14:30:53 +02:00
7338eb76f4 add arch to bootloader 2025-06-23 13:07:52 +02:00

View File

@ -25,6 +25,15 @@
boot.loader.grub.device = "nodev"; boot.loader.grub.device = "nodev";
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.loader.grub.extraEntries = ''
menuentry "Archlinux" {
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 07CA-4966
chainloader /EFI/BOOT/BOOTX64.EFI
}
'';
networking.hostName = "nixos"; networking.hostName = "nixos";
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
time.timeZone = "Europe/Paris"; time.timeZone = "Europe/Paris";
@ -77,6 +86,7 @@
"steam-original" "steam-original"
"steam-unwrapped" "steam-unwrapped"
"steam-run" "steam-run"
"obsidian"
]; ];
programs.steam.enable = true; programs.steam.enable = true;
@ -107,6 +117,8 @@
qemu qemu
cliphist cliphist
file file
obsidian
qalculate-qt
]; ];
programs.virt-manager.enable = true; programs.virt-manager.enable = true;
@ -120,6 +132,7 @@
update.onActivation = true; update.onActivation = true;
packages = [ packages = [
"com.heroicgameslauncher.hgl" "com.heroicgameslauncher.hgl"
"com.github.tchx84.Flatseal"
]; ];
}; };