Merge remote-tracking branch 'refs/remotes/origin/master'

This commit is contained in:
Deepak Mallubhotla 2025-03-05 02:09:32 +00:00
commit 8a2a368b53
Signed by: deepak
GPG Key ID: 47831B15427F5A55
2 changed files with 28 additions and 26 deletions

View File

@ -20,14 +20,14 @@
]; ];
}; };
"nixosWSL" = nixpkgs-23-11.lib.nixosSystem { "nixosWSL" = nixpkgs-24-05.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { specialArgs = {
inherit customPackageOverlay; inherit customPackageOverlay;
}; };
modules = [ modules = [
./nixosWSL/configuration.nix ./nixosWSL/configuration.nix
homeManager-23-11.nixosModules.home-manager { homeManager-24-05.nixosModules.home-manager {
home-manager.extraSpecialArgs = { home-manager.extraSpecialArgs = {
withGUI = false; withGUI = false;
gitSigningKey = "8F904A3FC7021497"; gitSigningKey = "8F904A3FC7021497";
@ -37,7 +37,7 @@
imports = [ ../home/deepak/home.nix ]; imports = [ ../home/deepak/home.nix ];
}; };
} }
NixOS-WSL.nixosModules.wsl NixOS-WSL-2405.nixosModules.wsl
]; ];
}; };
"nixosEggYoke" = nixpkgs-24-05.lib.nixosSystem { "nixosEggYoke" = nixpkgs-24-05.lib.nixosSystem {

View File

@ -62,6 +62,8 @@ in
gnupg gnupg
]; ];
environment.noXlibs = false;
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
fira-code fira-code
fira-code-symbols fira-code-symbols
@ -72,7 +74,7 @@ in
programs.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;
pinentryFlavor = "curses"; pinentryPackage = pkgs.pinentry-qt;
enableSSHSupport = true; enableSSHSupport = true;
}; };