New server

This commit is contained in:
2026-07-08 11:07:44 +02:00
parent 9cc333420a
commit 3496b41d3c
5 changed files with 109 additions and 0 deletions
+16
View File
@@ -44,5 +44,21 @@
}
];
};
nixosConfigurations.nixserve = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/nixserve
home-manager.nixosModules.home-manager
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.ulve = import ./hosts/nixserve/home.nix;
backupFileExtension = "backup";
};
}
];
};
};
}