working minimal version

This commit is contained in:
2026-07-29 14:10:32 +01:00
parent 072d97d290
commit b4e4de4cc8
8 changed files with 12 additions and 82 deletions

View File

@@ -21,7 +21,6 @@
};
settings = {
cores = 2;
trusted-users = ["root"];
download-buffer-size = 524288000;
experimental-features = [
"nix-command"
@@ -39,13 +38,6 @@
nixpkgs = {
config = {
allowUnfree = true;
packageOverrides = pkgs: {
unstable = import inputs.nixpkgs-unstable {
config = {
allowUnfree = true;
};
};
};
};
};
};

View File

@@ -1,14 +1,10 @@
{
self,
inputs,
moduleWithSystem,
...
}: {
flake.nixosModules.user = {
pkgs,
lib,
inputs',
...
}: let
flake.nixosModules.user = moduleWithSystem ({inputs', ...}: let
in {
users.users.user01 = {
isNormalUser = true;
@@ -20,5 +16,5 @@
"wheel"
];
};
};
});
}