2024-08-26 17:38:47 +02:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
|
|
|
|
# {{{ Imports
|
|
|
|
imports = [
|
|
|
|
../common/global
|
|
|
|
../common/users/pilot.nix
|
|
|
|
|
2024-08-26 19:49:12 +02:00
|
|
|
# ../common/optional/bluetooth.nix
|
2024-08-26 17:38:47 +02:00
|
|
|
../common/optional/greetd.nix
|
|
|
|
../common/optional/oci.nix
|
|
|
|
../common/optional/quietboot.nix
|
|
|
|
|
|
|
|
../common/optional/desktop
|
2024-08-26 19:49:12 +02:00
|
|
|
# ../common/optional/desktop/steam.nix
|
2024-08-26 17:38:47 +02:00
|
|
|
../common/optional/wayland/hyprland.nix
|
|
|
|
|
|
|
|
../common/optional/services/kanata.nix
|
2024-08-26 19:49:12 +02:00
|
|
|
../common/optional/services/nginx.nix
|
2024-08-26 17:38:47 +02:00
|
|
|
../common/optional/services/syncthing.nix
|
|
|
|
../common/optional/services/restic
|
|
|
|
|
|
|
|
./services/snapper.nix
|
|
|
|
|
|
|
|
./filesystems
|
|
|
|
./hardware
|
|
|
|
];
|
|
|
|
# }}}
|
|
|
|
# {{{ Machine ids
|
|
|
|
networking.hostName = "calypso";
|
2024-08-26 18:21:34 +02:00
|
|
|
networking.hostId = "3f69ae4b";
|
|
|
|
environment.etc.machine-id.text = "24fe28515de243f6ae4c6aa7e4291aac";
|
2024-08-26 17:38:47 +02:00
|
|
|
# }}}
|
|
|
|
# {{{ Tailscale internal IP DNS records
|
|
|
|
satellite.dns.records = [
|
|
|
|
# {
|
|
|
|
# at = config.networking.hostName;
|
|
|
|
# type = "A";
|
|
|
|
# value = "100.93.136.59";
|
|
|
|
# }
|
|
|
|
# {
|
|
|
|
# at = config.networking.hostName;
|
|
|
|
# type = "AAAA";
|
|
|
|
# value = "fd7a:115c:a1e0::e75d:883b";
|
|
|
|
# }
|
|
|
|
];
|
|
|
|
# }}}
|
|
|
|
# {{{ A few ad-hoc programs
|
|
|
|
programs.kdeconnect.enable = true;
|
|
|
|
programs.firejail.enable = true;
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
satellite.pilot.name = "moon";
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
}
|