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
fix: fixes
devins.page
1 month ago
6a86f99e
cf693026
+15
-12
5 changed files
expand all
collapse all
unified
split
hosts
bluepill
default.nix
bluepill-proxy
hardware.nix
trinity
default.nix
modules
nixos
default.nix
modules
tlp.nix
+5
-3
hosts/bluepill-proxy/hardware.nix
···
22
22
fsType = "ext4";
23
23
};
24
24
25
25
-
fileSystems."/efi" = {
26
26
-
device = "systemd-1";
27
27
-
fsType = "autofs";
25
25
+
fileSystems."/boot" = {
26
26
+
device = "/dev/disk/by-uuid/EC85-BE4C";
27
27
+
fsType = "vfat";
28
28
};
29
29
+
30
30
+
boot.loader.grub.device = "/dev/sda";
29
31
30
32
swapDevices = [];
31
33
+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
+
21
26
system.autoUpgrade = {
22
27
enable = true;
23
28
flake = "github:intergrav/flake";
+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
+
10
15
services.displayManager.gdm.enable = true;
11
16
services.desktopManager.gnome.enable = true;
12
17
-5
modules/nixos/default.nix
···
8
8
system.stateVersion = lib.mkDefault "24.11";
9
9
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
10
10
11
11
-
boot.loader = {
12
12
-
systemd-boot.enable = lib.mkDefault true;
13
13
-
efi.canTouchEfiVariables = lib.mkDefault true;
14
14
-
};
15
15
-
16
11
zramSwap.enable = true;
17
12
time.timeZone = lib.mkDefault "America/Nassau";
18
13
i18n.defaultLocale = lib.mkDefault "en_US.UTF-8";
-4
modules/nixos/modules/tlp.nix
···
1
1
-
{...}: {
2
2
-
services.power-profiles-daemon.enable = false;
3
3
-
services.tlp.enable = true;
4
4
-
}