tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
feat: systemd-boot
devins.page
1 month ago
7edffdc5
6a86f99e
+8
-11
5 changed files
expand all
collapse all
unified
split
hosts
bluepill
default.nix
hardware.nix
bluepill-proxy
hardware.nix
trinity
default.nix
hardware.nix
+2
-1
hosts/bluepill-proxy/hardware.nix
···
27
27
fsType = "vfat";
28
28
};
29
29
30
30
-
boot.loader.grub.device = "/dev/sda";
30
30
+
boot.loader.systemd-boot.enable = true;
31
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
21
-
boot.loader = {
22
22
-
systemd-boot.enable = true;
23
23
-
efi.canTouchEfiVariables = true;
24
24
-
};
25
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
38
+
boot.loader.systemd-boot.enable = true;
39
39
+
boot.loader.efi.canTouchEfiVariables = true;
40
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
10
-
boot.loader = {
11
11
-
systemd-boot.enable = true;
12
12
-
efi.canTouchEfiVariables = true;
13
13
-
};
14
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
25
+
boot.loader.systemd-boot.enable = true;
26
26
+
boot.loader.efi.canTouchEfiVariables = true;
27
27
+
25
28
swapDevices = [];
26
29
27
30
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";