1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/systems/fatteh/configuration.nix

51 lines
1.3 KiB
Nix
Raw Normal View History

2024-03-19 20:13:05 +01:00
{
config,
pkgs,
...
2025-12-27 22:22:54 +01:00
}:
{
2024-03-19 20:13:05 +01:00
imports = [
2026-01-09 12:36:13 +01:00
./cuda.nix
2026-01-27 09:00:36 +01:00
../../configs/applicative.nix
2024-03-19 20:13:05 +01:00
./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";
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
}