hacky thing
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good

This commit is contained in:
2024-04-13 22:45:56 +00:00
parent 5364a7b939
commit 298793cbe9
4 changed files with 53 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
{ lib, inputs, nixpkgs, homeManager, NixOS-WSL, ... }:
{ lib, inputs, nixpkgs, nixpkgs-23-11, homeManager, homeManager-23-11, NixOS-WSL, ... }:
{
"maxos" = lib.nixosSystem {
system = "x86_64-linux";
@@ -17,11 +17,11 @@
];
};
"nixosWSL" = lib.nixosSystem {
"nixosWSL" = nixpkgs-23-11.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./nixosWSL/configuration.nix
homeManager.nixosModules.home-manager {
homeManager-23-11.nixosModules.home-manager {
home-manager.extraSpecialArgs = {
withGUI = false;
gitSigningKey = "8F904A3FC7021497";

View File

@@ -56,7 +56,7 @@
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-curses;
pinentryFlavor = "curses";
enableSSHSupport = true;
};