diff --git a/hosts/jude/boot.nix b/hosts/jude/boot.nix index 44c96b5..ba571c5 100644 --- a/hosts/jude/boot.nix +++ b/hosts/jude/boot.nix @@ -13,6 +13,24 @@ "title Windows" "efi /EFI/Microsoft/EFI/bootmgfw.efi" ]); + "Pop.conf" = (lib.strings.concatStringsSep "\n" [ + "title Pop!_OS" + "linux /EFI/Pop_OS-e4918d10-538d-42ad-b35d-a1ee2ed2a433/vmlinuz.efi" + "initrd /EFI/Pop_OS-e4918d10-538d-42ad-b35d-a1ee2ed2a433/initrd.img" + "options root=UUID=e4918d10-538d-42ad-b35d-a1ee2ed2a433 ro quiet loglevel=0 systemd.show_status=false splash" + ]); + "Pop-oldkern.conf" = (lib.strings.concatStringsSep "\n" [ + "title Pop!_OS" + "linux /EFI/Pop_OS-e4918d10-538d-42ad-b35d-a1ee2ed2a433/vmlinuz-previous.efi" + "initrd /EFI/Pop_OS-e4918d10-538d-42ad-b35d-a1ee2ed2a433/initrd.img-previous" + "options root=UUID=e4918d10-538d-42ad-b35d-a1ee2ed2a433 ro quiet loglevel=0 systemd.show_status=false splash" + ]); + "Pop-recovery.conf" = (lib.strings.concatStringsSep "\n" [ + "title Pop!_OS Recovery" + "linux /EFI/Recovery-1E97-BC0F/vmlinuz.efi" + "initrd /EFI/Recovery-1E97-BC0F/initrd.gz" + "options boot=casper hostname=recovery userfullname=Recovery username=recovery live-media-path=/casper-1E97-BC0F noprompt " + ]); }; }; grub = { diff --git a/hosts/jude/default.nix b/hosts/jude/default.nix index 333c519..fe8922b 100644 --- a/hosts/jude/default.nix +++ b/hosts/jude/default.nix @@ -58,7 +58,7 @@ fsType = "auto"; }; "/windows" = { - device = "/dev/nvme0n1p3"; + device = "/dev/nvme0n1p5"; fsType = "ntfs-3g"; }; }; diff --git a/hosts/jude/hardware-configuration.nix b/hosts/jude/hardware-configuration.nix index 8dbc6be..5b54c4b 100644 --- a/hosts/jude/hardware-configuration.nix +++ b/hosts/jude/hardware-configuration.nix @@ -14,7 +14,8 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/27ae91ed-32e9-411e-8227-0d99e360fbbf"; + { #device = "/dev/disk/by-uuid/27ae91ed-32e9-411e-8227-0d99e360fbbf"; + device = "/dev/nvme0n1p4"; fsType = "btrfs"; };