pin docker

This commit is contained in:
2023-07-25 21:03:40 +02:00
parent fad7a9223d
commit e5d05c1a2d
3 changed files with 11 additions and 8 deletions

View File

@@ -21,13 +21,6 @@
nixpkgs.overlays = [ (import ./utils/overlays/packages.nix) ];
nix.nixPath = [
"nixpkgs=https://github.com/NixOS/nixpkgs/archive/b6bbc53029a31f788ffed9ea2d459f0bb0f0fbfc.tar.gz"
"nixos-config=/etc/nixos/configuration.nix"
"/nix/var/nix/profiles/per-user/root/channels"
];
sops.defaultSopsFile = ./secrets.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];

View File

@@ -22,7 +22,7 @@ in {
./social.nix
./signal-work.nix
./thunderbird.nix
# ./thunderbird.nix
./parsec.nix
];
@@ -83,6 +83,7 @@ in {
swayidle
swaylock
# thunderbird
thunderbirdPackages.thunderbird-115
tor-browser-bundle-bin
unzip
vlc

View File

@@ -1,5 +1,14 @@
let
pinnedPkgs = import(pkgs.fetchFromGitHub {
owner = "NixOS";
repo = "nixpkgs";
rev = "b6bbc53029a31f788ffed9ea2d459f0bb0f0fbfc";
sha256 = "sha256-JVFoTY3rs1uDHbh0llRb1BcTNx26fGSLSiPmjojT+KY=";
}) {};
in
self: super: {
bento = (super.callPackage ../pkgs/bento { });
howdy = (super.callPackage ../pkgs/howdy { });
linux-enable-ir-emitter = (super.callPackage ../pkgs/linux-enable-ir-emitter { });
docker = pinnedPkgs.docker;
}