-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.nix
More file actions
197 lines (174 loc) · 3.99 KB
/
Copy pathconfiguration.nix
File metadata and controls
197 lines (174 loc) · 3.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
{
modulesPath,
config,
lib,
pkgs,
inputs,
...
}:
let
nfsDefaultOptions = [
"nofail"
"noatime"
"nolock"
"intr"
"tcp"
"actimeo=1800"
];
in
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/profiles/qemu-guest.nix")
./disk-config.nix
];
sops = {
age.keyFile = "/root/.config/sops/age/keys.txt";
defaultSopsFile = ./secrets/secrets.yaml;
defaultSopsFormat = "yaml";
};
nixpkgs.config = {
allowUnfree = true;
system = "x86_64-linux";
};
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
};
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
networking = {
hostName = "nixos-homelab-vm";
firewall.enable = true;
interfaces.ens3.useDHCP = false;
interfaces.ens3.ipv4.addresses = [
{
address = config.homelab.ip;
prefixLength = 24;
}
];
defaultGateway = "192.168.1.1";
nameservers = [
config.homelab.nasIp
"8.8.8.8"
"1.1.1.1"
];
};
time.timeZone = "Europe/Zurich";
i18n.defaultLocale = "en_US.UTF-8";
swapDevices = [
{
device = "/swapfile";
size = 8192;
}
];
virtualisation.containers.enable = true;
virtualisation = {
podman = {
enable = true;
# Create a `docker` alias for podman, to use it as a drop-in replacement
dockerCompat = true;
# Required for containers under podman-compose to be able to talk to each other.
defaultNetwork.settings.dns_enabled = true;
autoPrune = {
enable = true;
dates = "weekly";
flags = [ "--all" ];
};
};
};
programs.fish.enable = true;
security.sudo.wheelNeedsPassword = false;
services = {
openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
};
environment.systemPackages = map lib.lowPrio [
pkgs.curl
pkgs.docker-compose
pkgs.gitMinimal
pkgs.nano
pkgs.ncdu
pkgs.nixfmt
pkgs.podman-tui
pkgs.sops
pkgs.tmux
];
users.users = {
root = {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKfjN8It6HvrbbF6jo2hIAu2AAvGKevBEtQ2HYAuBzxm gael@mac.lan"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILBileQ5HAicVceiOgApWVAgr28/HFZJMjuglqPXnlHV gael@container.lan"
];
home = "/root";
extraGroups = [ "wheel" ];
};
};
programs.ssh = {
startAgent = true;
extraConfig = ''
Host github.com
IdentityFile ~/.ssh/nix-homelab-github
IdentitiesOnly yes
'';
};
# NFS mounts
fileSystems = {
"/mnt/media" = {
device = "${config.homelab.nasIp}:/volume1/media";
fsType = "nfs";
options = nfsDefaultOptions;
};
"/mnt/documents" = {
device = "${config.homelab.nasIp}:/volume1/documents";
fsType = "nfs";
options = nfsDefaultOptions;
};
"/mnt/nvme" = {
device = "${config.homelab.nasIp}:/volume2/nvme";
fsType = "nfs";
options = nfsDefaultOptions;
};
};
system.activationScripts.ensureBinDir = {
deps = [ "specialfs" ];
text = ''
if [ -L /bin ]; then
rm -f /bin
fi
if [ ! -d /bin ]; then
mkdir -p /bin
fi
chmod 0755 /bin
'';
};
system.activationScripts.binsh.deps = lib.mkAfter [ "ensureBinDir" ];
nix.optimise = {
automatic = true;
dates = [ "Sun 03:00" ];
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 3d";
};
# inspo: https://github.com/reckenrode/nixos-configs/blob/main/hosts/meteion/configuration.nix
system.autoUpgrade = {
enable = true;
dates = "*-*-* 04:00:00";
randomizedDelaySec = "1h";
flake = "github:gaelgoth/nix-homelab";
};
# Homelab shared option overrides (Phase 1 migration from vars.nix)
homelab = {
ip = "192.168.1.5";
nasIp = "192.168.1.2";
domain = "homelab.gothuey.dev";
mediaPath = "/mnt/media";
};
system.stateVersion = "25.05";
}