multiple things + tried gpg signing

This commit is contained in:
2026-06-06 09:30:35 +02:00
parent f7861f7ca1
commit 6830973233
7 changed files with 28 additions and 9 deletions
+5 -1
View File
@@ -5,6 +5,9 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable"; # used for some packages
nixos-grub-themes.url = "github:jeslie0/nixos-grub-themes";
# This one is only used when testing some packaging. You must change the path to the correct nixpkgs clone
nixpkgs-local.url = "path:/home/tomasr/devel/fugit2-gpgme";
home-manager = {
url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs";
@@ -59,8 +62,9 @@
};
pkgs = mkPkgs inputs.nixpkgs;
pkgs-unstable = mkPkgs inputs.nixpkgs-unstable;
pkgs-local = mkPkgs inputs.nixpkgs-local;
in {
inherit pkgs pkgs-unstable;
inherit pkgs pkgs-unstable pkgs-local;
};
}
// (inputs.import-tree ./modules));