refactor: simplify hosts files

This commit is contained in:
2026-03-11 21:25:32 +01:00
committed by hektor
parent f74803cd88
commit 7334018e6f
6 changed files with 61 additions and 85 deletions
+15
View File
@@ -1,4 +1,11 @@
{ inputs, outputs, ... }:
{
imports = [
inputs.disko.nixosModules.disko
inputs.home-manager.nixosModules.default
];
system.stateVersion = "25.05";
nix.settings.experimental-features = [
@@ -7,4 +14,12 @@
];
nixpkgs.config.allowUnfree = true;
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
inherit inputs outputs;
};
};
}