Experimenting on 'that' pattern

This commit is contained in:
Alexandre 2026-05-30 21:29:28 +02:00
parent 7634e8f78b
commit 43daa2b988
3 changed files with 3 additions and 12 deletions

View File

@ -11,10 +11,5 @@
useGlobalPkgs = true;
useUserPackages = true;
};
home = {
stateVersion = "25.11";
};
};
}

View File

@ -4,13 +4,6 @@
...
}: {
flake.nixosConfigurations.framework = inputs.nixpkgs.lib.nixosSystem {
modules = [
self.nixosModules.frameworkHardware
self.nixosModules.homeManager
];
};
# The configuration.nix for system config
flake.nixosModules.frameworkModule = { pkgs, ... }: {
environment = {

View File

@ -3,9 +3,12 @@
inputs,
...
}: {
flake.nixosConfigurations.framework = inputs.nixpkgs.lib.nixosSystem {
modules = [
self.nixosModules.frameworkHardware
self.nixosModules.frameworkModule
self.nixosModules.homeManager
];
};
}