feat: fix one attempt

This commit is contained in:
2022-03-29 13:39:44 +00:00
parent 0155646a78
commit a5d148c1d6
8 changed files with 164 additions and 24 deletions

28
hosts/hosts.nix Normal file
View File

@@ -0,0 +1,28 @@
{ lib, inputs, nixpkgs, homeManager, ... }:
{
"maxos" = lib.nixosSystem {
system = "x86_64-linux";
modules = [
./maxos/configuration.nix
homeManager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.users.deepak = {
imports = [ ../home/deepak/home.nix ];
};
}
];
};
"nixosWSL" = lib.nixosSystem {
system = "x86_64-linux";
modules = [
./nixosWSL/configuration.nix
homeManager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.users.deepak = {
imports = [ ../home/deepak/home.nix ];
};
}
];
};
}