Initial commit of flake-based NixOS config for the whole haus

This commit is contained in:
2025-06-29 14:43:56 +03:00
commit c09b5d4043
21 changed files with 1148 additions and 0 deletions

21
hosts/puter/default.nix Normal file
View File

@@ -0,0 +1,21 @@
{
config,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
./cronjobs.nix
./syncthing.nix
./packages.nix
./de/default.nix
../../modules/common/nix.nix
../../modules/common/networking.nix
../../modules/common/shell.nix
../../modules/common/utils.nix
../../modules/common/security.nix
];
networking.hostName = "puter";
# This will be overridden by system/default.nix
system.stateVersion = "24.05";
}