feat: adds nixos egg yoke
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good

This commit is contained in:
2024-12-30 01:13:20 +00:00
parent e8e13282dd
commit fb438d1e0b
4 changed files with 197 additions and 46 deletions

View File

@@ -26,7 +26,7 @@ in
};
networking.hostName = "nixosWSL"; # Define your hostname.
networking.hostName = "nixosEggYoke"; # Define your hostname.
# Enable nix flakes
nix.package = pkgs.nixFlakes;
@@ -61,6 +61,9 @@ in
pinentry-curses
gnupg
];
# try this out to fix WSL issue
environment.noXlibs = false;
fonts.packages = with pkgs; [
fira-code
@@ -72,7 +75,7 @@ in
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";
pinentryPackage = pkgs.pinentry-qt;
enableSSHSupport = true;
};