Add msi host
This commit is contained in:
parent
e8d8c1c788
commit
b93969cf34
8 changed files with 116 additions and 1 deletions
15
flake.nix
15
flake.nix
|
@ -50,6 +50,20 @@
|
|||
|
||||
outputs = inputs @ { self, nixpkgs, ... }: {
|
||||
nixosConfigurations = {
|
||||
msi = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit self system inputs; };
|
||||
|
||||
modules = [
|
||||
./modules/impurity.nix
|
||||
./modules/preserve-system.nix
|
||||
./modules/devenv
|
||||
./modules/system.nix
|
||||
./modules/hyprland
|
||||
./systems/msi
|
||||
];
|
||||
};
|
||||
|
||||
lenovo = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit self system inputs; };
|
||||
|
@ -64,6 +78,7 @@
|
|||
];
|
||||
};
|
||||
|
||||
msi-impure = self.nixosConfigurations.msi.extendModules { modules = [ { impurity.enable = true; } ]; };
|
||||
lenovo-impure = self.nixosConfigurations.lenovo.extendModules { modules = [ { impurity.enable = true; } ]; };
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue