nixconf/hosts/hosts.nix
Deepak Mallubhotla 298793cbe9
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good
hacky thing
2024-04-13 22:45:56 +00:00

38 lines
1.1 KiB
Nix

{ lib, inputs, nixpkgs, nixpkgs-23-11, homeManager, homeManager-23-11, NixOS-WSL, ... }:
{
"maxos" = lib.nixosSystem {
system = "x86_64-linux";
modules = [
./maxos/configuration.nix
homeManager.nixosModules.home-manager {
home-manager.extraSpecialArgs = {
withGUI = true;
gitSigningKey = "976F3357369149AB";
};
home-manager.useGlobalPkgs = true;
home-manager.users.deepak = {
imports = [ ../home/deepak/home.nix ];
};
}
];
};
"nixosWSL" = nixpkgs-23-11.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./nixosWSL/configuration.nix
homeManager-23-11.nixosModules.home-manager {
home-manager.extraSpecialArgs = {
withGUI = false;
gitSigningKey = "8F904A3FC7021497";
};
home-manager.useGlobalPkgs = true;
home-manager.users.deepak = {
imports = [ ../home/deepak/home.nix ];
};
}
NixOS-WSL.nixosModules.wsl
];
};
}