remove unneccessary var

This commit is contained in:
Vinzenz Schroeter 2024-10-26 17:41:46 +02:00
parent f673c6ae29
commit 8ca1862742

View file

@ -18,6 +18,10 @@
...
}: {
nixosConfigurations = let
host-params = {
inherit nixpkgs;
inherit home-manager;
inherit lix-module;
common-modules = [
lix-module.nixosModules.default
./common
@ -28,12 +32,6 @@
./modules/desktop-environment.nix
./modules/desktop-hardware.nix
];
host-params = {
inherit nixpkgs;
inherit home-manager;
inherit lix-module;
common-modules = common-modules;
desktop-modules = desktop-modules;
};
in {
vinzenz-lpt2 = import ./hosts/vinzenz-lpt2 host-params;