blob: cbc0430fa32f82aa148476115f8b76680858d5b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ ... }:
{
imports = [
./disk-config.nix
./git.nix
./samba.nix
./nginx.nix
# ./uvm-guests
./networking.nix
../core
];
system.stateVersion = "24.11";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
time.timeZone = "Europe/Amsterdam";
home-manager.users.jras = { home.stateVersion = "24.11"; };
}
|