nix: update

This commit is contained in:
outfoxxed 2026-01-12 02:06:01 -08:00
parent 08a8ebbffd
commit 15ef1885f7
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
5 changed files with 54 additions and 28 deletions

View file

@ -48,6 +48,18 @@
inputs.hyprland.follows = "hyprland";
};
/*hyprqt6engine = {
url = "github:hyprwm/hyprqt6engine";
inputs.nixpkgs.follows = "nixpkgs";
inputs.hyprutils.follows = "hyprutils";
inputs.hyprlang.follows = "hyprlang";
};*/
/*qt6engine = {
url = "github:kosslan/qt6engine";
inputs.nixpkgs.follows = "nixpkgs";
};*/
quickshell = {
url = "git+https://git.outfoxxed.me/quickshell/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
@ -79,6 +91,7 @@
./modules/hyprland
./modules/xserver
./systems/msi
#(inputs.vps-testing.nixosConfigurations.localHostModule)
];
};
@ -95,6 +108,19 @@
];
};
userland = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = { inherit self system inputs; };
modules = [
./modules/impurity.nix
./modules/preserve-system.nix
./modules/system.nix
./modules/hyprland
./systems/userland
];
};
msi-impure = self.nixosConfigurations.msi.extendModules { modules = [ { impurity.enable = true; } ]; };
lenovo-impure = self.nixosConfigurations.lenovo.extendModules { modules = [ { impurity.enable = true; } ]; };
};