Add msi host

This commit is contained in:
outfoxxed 2023-07-27 01:17:17 -07:00
parent e8d8c1c788
commit b93969cf34
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
8 changed files with 116 additions and 1 deletions

View file

@ -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; } ]; };
};