nixconf/hosts/hosts.nix
Deepak Mallubhotla ea36c55f82
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good
feat: adds stuff to nixos wsl to sync with eggyoke
2025-02-27 01:16:49 +00:00

64 lines
1.6 KiB
Nix

{ lib, inputs, nixpkgs-23-11, nixpkgs-24-05, homeManager, homeManager-23-11, homeManager-24-05, NixOS-WSL, NixOS-WSL-2405, customPackageOverlay, ... }:
{
"maxos" = lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit customPackageOverlay;
};
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-24-05.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit customPackageOverlay;
};
modules = [
./nixosWSL/configuration.nix
homeManager-24-05.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-2405.nixosModules.wsl
];
};
"nixosEggYoke" = nixpkgs-24-05.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit customPackageOverlay;
};
modules = [
./nixosEggYoke/configuration.nix
homeManager-24-05.nixosModules.home-manager {
home-manager.extraSpecialArgs = {
withGUI = false;
gitSigningKey = "47831B15427F5A55";
};
home-manager.useGlobalPkgs = true;
home-manager.users.deepak = {
imports = [ ../home/deepak/home.nix ];
};
}
NixOS-WSL-2405.nixosModules.wsl
];
};
}