pin to fix anytype error

This commit is contained in:
m3tam3re 2025-03-01 15:43:00 +01:00
parent c7fb70c88d
commit d51894816c
4 changed files with 9 additions and 9 deletions

12
flake.lock generated
View File

@ -221,19 +221,19 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-d016996": { "nixpkgs-2744d98": {
"locked": { "locked": {
"lastModified": 1737074211, "lastModified": 1739661218,
"narHash": "sha256-BdTeiNTc1DUiEcKhmjjuJ54KRv+8UzyTqRl7QS64AMI=", "narHash": "sha256-hEGW0SKD0ORTEmoTuEEONxgENP5kMqe+NCtJug0U6R0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d0169965cf1ce1cd68e50a63eabff7c8b8959743", "rev": "2744d988fa116fc6d46cdfa3d1c936d0abd7d121",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d0169965cf1ce1cd68e50a63eabff7c8b8959743", "rev": "2744d988fa116fc6d46cdfa3d1c936d0abd7d121",
"type": "github" "type": "github"
} }
}, },
@ -325,7 +325,7 @@
"home-manager": "home-manager_2", "home-manager": "home-manager_2",
"hyprpanel": "hyprpanel", "hyprpanel": "hyprpanel",
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs_3",
"nixpkgs-d016996": "nixpkgs-d016996", "nixpkgs-2744d98": "nixpkgs-2744d98",
"nixpkgs-master": "nixpkgs-master", "nixpkgs-master": "nixpkgs-master",
"nixpkgs-stable": "nixpkgs-stable", "nixpkgs-stable": "nixpkgs-stable",
"rose-pine-hyprcursor": "rose-pine-hyprcursor" "rose-pine-hyprcursor": "rose-pine-hyprcursor"

View File

@ -17,7 +17,7 @@
}; };
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11"; nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-d016996.url = "github:nixos/nixpkgs/d0169965cf1ce1cd68e50a63eabff7c8b8959743"; nixpkgs-2744d98.url = "github:nixos/nixpkgs/2744d988fa116fc6d46cdfa3d1c936d0abd7d121";
nixpkgs-master.url = "github:nixos/nixpkgs/master"; nixpkgs-master.url = "github:nixos/nixpkgs/master";
agenix.url = "github:ryantm/agenix"; agenix.url = "github:ryantm/agenix";

View File

@ -82,7 +82,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
appimage-run appimage-run
anytype pinned.anytype
# blueberry # blueberry
brave brave
# brightnessctl # brightnessctl

View File

@ -29,7 +29,7 @@
}; };
pinned-packages = final: _prev: { pinned-packages = final: _prev: {
pinned = import inputs.nixpkgs-d016996 { pinned = import inputs.nixpkgs-2744d98 {
system = final.system; system = final.system;
config.allowUnfree = true; config.allowUnfree = true;
}; };