mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
45 lines
966 B
Nix
45 lines
966 B
Nix
{
|
|
imports = [
|
|
../../users/richie
|
|
../../users/gaming
|
|
../../common/global
|
|
../../common/optional/desktop.nix
|
|
../../common/optional/docker.nix
|
|
../../common/optional/scanner.nix
|
|
../../common/optional/steam.nix
|
|
../../common/optional/syncthing_base.nix
|
|
../../common/optional/systemd-boot.nix
|
|
../../common/optional/update.nix
|
|
../../common/optional/yubikey.nix
|
|
../../common/optional/zerotier.nix
|
|
../../common/optional/nvidia.nix
|
|
./hardware.nix
|
|
./syncthing.nix
|
|
./llms.nix
|
|
];
|
|
|
|
networking = {
|
|
hostName = "bob";
|
|
hostId = "7c678a41";
|
|
firewall.enable = true;
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
services = {
|
|
displayManager = {
|
|
enable = true;
|
|
autoLogin = {
|
|
user = "gaming";
|
|
enable = true;
|
|
};
|
|
defaultSession = "plasma";
|
|
};
|
|
|
|
openssh.ports = [ 262 ];
|
|
|
|
snapshot_manager.path = ./snapshot_config.toml;
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|