fixed disko configuration

This commit is contained in:
2026-07-29 17:28:36 +01:00
parent 882ca8780a
commit 8198522f64
5 changed files with 96 additions and 51 deletions

View File

@@ -4,6 +4,7 @@
...
}: {
flake.nixosConfigurations.server02 = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = with self.nixosModules;
[
server02Configuration
@@ -12,7 +13,10 @@
++ (with inputs.nix-config.nixosModules; [
nvim
git
zsh
]);
# zsh
])
++ [
inputs.disko.nixosModules.disko
];
};
}