26 lines
656 B
Nix
26 lines
656 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
#./syncthing.nix
|
|
./packages.nix
|
|
./de/default.nix
|
|
#./remotebuild_user.nix
|
|
../../modules/userapps/kondo_timer.nix
|
|
../../modules/common/nix.nix
|
|
../../modules/common/networking.nix
|
|
../../modules/common/shell.nix
|
|
../../modules/common/security.nix
|
|
#../../modules/common/wine.nix
|
|
../../modules/common/libvirt.nix
|
|
../../modules/common/keyd.nix
|
|
];
|
|
networking.hostName = "puter";
|
|
# This will be overridden by system/default.nix
|
|
system.stateVersion = "24.05";
|
|
security.pki.certificates = ["/home/user/.config/bigbox.local.crt"];
|
|
}
|