1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Fix wrong scopes in default.nix

This commit is contained in:
Stefan Ellmauthaler 2022-04-28 16:30:31 +02:00
parent 814c639775
commit d4d2b8ae71
Failed to extract signature
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ let
package = pkgs.legacyPackages.${system}.nixUnstable; package = pkgs.legacyPackages.${system}.nixUnstable;
nixPath= [ "nixpkgs=${pkgs}" ]; nixPath= [ "nixpkgs=${pkgs}" ];
registry.nixpkgs.flake = pkgs; registry.nixpkgs.flake = pkgs;
registry.nixpkgs-unstable.flake = pkgs.unstable; registry.nixpkgs-unstable.flake = flakes.nixpkgs-unstable;
} }
;} ;}
] ++ extraModules ] ++ extraModules

View File

@ -11,7 +11,7 @@
core = { editor = "emacsclient"; }; core = { editor = "emacsclient"; };
gpg = lib.mkIf config.variables.git.gpgsm { gpg = lib.mkIf config.variables.git.gpgsm {
format = "x509"; format = "x509";
program = "${pkgs.gpgsm}/bin/gpgsm"; program = "${pkgs.gnupg}/bin/gpgsm";
}; };
#gpg = { #gpg = {
# format = "x509"; # format = "x509";