configurations for my servers and desktops
nix nixos flake dots dotfiles

feat: systemd-boot

+8 -11
+2 -1
hosts/bluepill-proxy/hardware.nix
··· 27 27 fsType = "vfat"; 28 28 }; 29 29 30 - boot.loader.grub.device = "/dev/sda"; 30 + boot.loader.systemd-boot.enable = true; 31 + boot.loader.efi.canTouchEfiVariables = true; 31 32 32 33 swapDevices = []; 33 34
-5
hosts/bluepill/default.nix
··· 18 18 networking.hostName = "bluepill"; 19 19 networking.useNetworkd = true; 20 20 21 - boot.loader = { 22 - systemd-boot.enable = true; 23 - efi.canTouchEfiVariables = true; 24 - }; 25 - 26 21 system.autoUpgrade = { 27 22 enable = true; 28 23 flake = "github:intergrav/flake";
+3
hosts/bluepill/hardware.nix
··· 35 35 ]; 36 36 }; 37 37 38 + boot.loader.systemd-boot.enable = true; 39 + boot.loader.efi.canTouchEfiVariables = true; 40 + 38 41 swapDevices = [ 39 42 { 40 43 device = "/var/lib/swapfile";
-5
hosts/trinity/default.nix
··· 7 7 networking.hostName = "trinity"; 8 8 networking.networkmanager.enable = true; 9 9 10 - boot.loader = { 11 - systemd-boot.enable = true; 12 - efi.canTouchEfiVariables = true; 13 - }; 14 - 15 10 services.displayManager.gdm.enable = true; 16 11 services.desktopManager.gnome.enable = true; 17 12
+3
hosts/trinity/hardware.nix
··· 22 22 options = ["fmask=0077" "dmask=0077"]; 23 23 }; 24 24 25 + boot.loader.systemd-boot.enable = true; 26 + boot.loader.efi.canTouchEfiVariables = true; 27 + 25 28 swapDevices = []; 26 29 27 30 nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";