blob: d1a83fec5737069030c554dc88ad1c0b3504df62 (
plain) (
blame)
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
|
{...}: {
imports = [
./hardware.nix
];
soispha = {
services.backup = {
# Apzu should be regularly synced with Tiamat, which performs updates.
enable = false;
};
bluetooth.enable = true;
laptop = {
backlight = "intel_backlight";
enable = true;
};
locale.enable = true;
networking = {
enable = true;
hostName = "apzu";
mode = "NetworkManager";
};
services.unison.foreign.address = "tiamat.fritz.box";
nixpkgs = {
enable = true;
systemName = "x86_64-linux";
};
users = {
enable = true;
enableDeprecatedPlugdev = true;
hashedPassword = "$y$jFT$3qI9MYLDHPUdGKsVa8skV0$TOjX0SFHWuj52zd7/kmkNtG5EqQwYcqv0FKXWbLaro6";
};
};
system.stateVersion = "23.05";
}
|