2024-03-19 20:13:05 +01:00
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
2025-12-25 14:00:03 +01:00
|
|
|
}: {
|
2024-03-19 20:13:05 +01:00
|
|
|
imports = [
|
|
|
|
|
./hardware-configuration.nix
|
2024-03-19 20:31:02 +01:00
|
|
|
../../configs/networkmanager.nix
|
|
|
|
|
../../configs/default.nix
|
2025-12-27 15:30:01 +01:00
|
|
|
../../configs/ccc.nix
|
2025-12-14 18:19:33 +01:00
|
|
|
../../configs/gaming.nix
|
2024-03-19 20:31:02 +01:00
|
|
|
# ../../configs/gnome.nix
|
2024-03-19 20:13:05 +01:00
|
|
|
];
|
|
|
|
|
|
2024-03-19 20:31:02 +01:00
|
|
|
niveum = {
|
|
|
|
|
batteryName = "BAT1";
|
|
|
|
|
wirelessInterface = "wlp3s0";
|
|
|
|
|
promptColours.success = "blue";
|
2024-03-19 20:13:05 +01:00
|
|
|
};
|
|
|
|
|
|
2024-03-20 08:13:07 +01:00
|
|
|
services.illum.enable = true;
|
|
|
|
|
|
2024-03-19 20:31:02 +01:00
|
|
|
age.secrets = {
|
|
|
|
|
retiolum-rsa = {
|
|
|
|
|
file = ../../secrets/fatteh-retiolum-privateKey-rsa.age;
|
|
|
|
|
mode = "400";
|
2024-06-03 07:27:01 +02:00
|
|
|
owner = "tinc-retiolum";
|
|
|
|
|
group = "tinc-retiolum";
|
2024-03-19 20:31:02 +01:00
|
|
|
};
|
|
|
|
|
retiolum-ed25519 = {
|
|
|
|
|
file = ../../secrets/fatteh-retiolum-privateKey-ed25519.age;
|
|
|
|
|
mode = "400";
|
2024-06-03 07:27:01 +02:00
|
|
|
owner = "tinc-retiolum";
|
|
|
|
|
group = "tinc-retiolum";
|
2024-03-19 20:31:02 +01:00
|
|
|
};
|
|
|
|
|
restic.file = ../../secrets/restic.age;
|
|
|
|
|
syncthing-cert.file = ../../secrets/fatteh-syncthing-cert.age;
|
|
|
|
|
syncthing-key.file = ../../secrets/fatteh-syncthing-key.age;
|
2024-09-23 19:19:14 +02:00
|
|
|
wireguard-aether-key.file = ../../secrets/fatteh-wireguard-aether-key.age;
|
|
|
|
|
wireguard-aether-psk.file = ../../secrets/fatteh-wireguard-aether-psk.age;
|
2024-03-19 20:13:05 +01:00
|
|
|
};
|
|
|
|
|
|
2024-03-19 20:31:02 +01:00
|
|
|
networking.hostName = "fatteh";
|
2025-12-25 14:00:03 +01:00
|
|
|
networking.retiolum = pkgs.lib.niveum.retiolumAddresses.fatteh;
|
2024-03-19 20:13:05 +01:00
|
|
|
|
2024-03-19 20:31:02 +01:00
|
|
|
system.stateVersion = "23.11";
|
2024-03-19 20:13:05 +01:00
|
|
|
}
|