mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (import ../../lib) retiolumAddresses;
|
|
in {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../configs/networkmanager.nix
|
|
../../configs/default.nix
|
|
# ../../configs/gnome.nix
|
|
];
|
|
|
|
niveum = {
|
|
batteryName = "BAT1";
|
|
wirelessInterface = "wlp3s0";
|
|
promptColours.success = "blue";
|
|
};
|
|
|
|
services.illum.enable = true;
|
|
|
|
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/selenized-light.yaml";
|
|
|
|
age.secrets = {
|
|
retiolum-rsa = {
|
|
file = ../../secrets/fatteh-retiolum-privateKey-rsa.age;
|
|
mode = "400";
|
|
owner = "tinc-retiolum";
|
|
group = "tinc-retiolum";
|
|
};
|
|
retiolum-ed25519 = {
|
|
file = ../../secrets/fatteh-retiolum-privateKey-ed25519.age;
|
|
mode = "400";
|
|
owner = "tinc-retiolum";
|
|
group = "tinc-retiolum";
|
|
};
|
|
restic.file = ../../secrets/restic.age;
|
|
syncthing-cert.file = ../../secrets/fatteh-syncthing-cert.age;
|
|
syncthing-key.file = ../../secrets/fatteh-syncthing-key.age;
|
|
wireguard-aether-key.file = ../../secrets/fatteh-wireguard-aether-key.age;
|
|
wireguard-aether-psk.file = ../../secrets/fatteh-wireguard-aether-psk.age;
|
|
};
|
|
|
|
networking.wg-quick.interfaces.aether.address = ["192.168.178.202/24"];
|
|
|
|
networking.hostName = "fatteh";
|
|
networking.retiolum = retiolumAddresses.fatteh;
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|