Fix flake.nix

This commit is contained in:
Riley Apeldoorn 2023-05-23 10:04:47 +02:00
parent 95a8ff974b
commit e1652df3d0

View file

@ -21,7 +21,8 @@
(x: x // { imports = [ ./shared/home ]; }) (x: x // { imports = [ ./shared/home ]; })
]; ];
}; };
}; in { };
in {
# Desktop system # Desktop system
"thor" = lib.nixosSystem { "thor" = lib.nixosSystem {
@ -52,7 +53,8 @@
"dev-lt-63" = homeManagerConfiguration { "dev-lt-63" = homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages."x86_64-linux"; pkgs = nixpkgs.legacyPackages."x86_64-linux";
modules = [ modules = [
(mkUserConfig ./system/dev-lt-63) ./system/dev-lt-63/home.nix
./shared/home
]; ];
}; };
}; };