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
3 months ago
76b7220b
77017ef0
+8
-5
3 changed files
expand all
collapse all
unified
split
hosts
bluepill
default.nix
bluepill-proxy
default.nix
modules
nixos
default.nix
+1
hosts/bluepill-proxy/default.nix
···
7
7
8
8
networking.hostName = "bluepill-proxy";
9
9
networking.domain = "";
10
10
+
networking.networkmanager.enable = true;
10
11
11
12
documentation = {
12
13
enable = false;
+7
hosts/bluepill/default.nix
···
14
14
./services/transmission.nix
15
15
];
16
16
17
17
+
boot.loader = {
18
18
+
systemd-boot.enable = true;
19
19
+
efi.canTouchEfiVariables = true;
20
20
+
};
21
21
+
17
22
networking.hostName = "bluepill";
23
23
+
networking.networkmanager.enable = true;
24
24
+
18
25
environment.systemPackages = with pkgs; [
19
26
age
20
27
beets
-5
modules/nixos/default.nix
···
2
2
system.stateVersion = lib.mkDefault "24.11";
3
3
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
4
4
5
5
-
boot.loader = {
6
6
-
systemd-boot.enable = true;
7
7
-
efi.canTouchEfiVariables = true;
8
8
-
};
9
9
-
10
5
networking.networkmanager.enable = true;
11
6
zramSwap.enable = true;
12
7
time.timeZone = lib.mkDefault "America/Nassau";