feat(flake): add my nixpkgs fork to inputs

This commit is contained in:
2026-05-27 22:23:01 +02:00
parent efca613abc
commit 78b2b21122
3 changed files with 22 additions and 0 deletions
Generated
+17
View File
@@ -235,6 +235,22 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-my-features": {
"locked": {
"lastModified": 1779912664,
"narHash": "sha256-OtD0RA+zI3a5BE/g6IgflMf8DiwdKIJ2S2P4k7ww3AI=",
"owner": "Superredstone",
"repo": "nixpkgs",
"rev": "4788847e7c2deefd8c9a7369af552a1d9e9964d1",
"type": "github"
},
"original": {
"owner": "Superredstone",
"ref": "my-features",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1779508470, "lastModified": 1779508470,
@@ -372,6 +388,7 @@
"nixflix": "nixflix", "nixflix": "nixflix",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"nixpkgs-25-11": "nixpkgs-25-11", "nixpkgs-25-11": "nixpkgs-25-11",
"nixpkgs-my-features": "nixpkgs-my-features",
"nixvim": "nixvim", "nixvim": "nixvim",
"noctalia": "noctalia", "noctalia": "noctalia",
"sops-nix": "sops-nix" "sops-nix": "sops-nix"
+3
View File
@@ -2,6 +2,7 @@
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-25-11.url = "github:nixos/nixpkgs/nixos-25.11"; nixpkgs-25-11.url = "github:nixos/nixpkgs/nixos-25.11";
nixpkgs-my-features.url = "github:Superredstone/nixpkgs/my-features";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@@ -29,6 +30,7 @@
{ {
nixpkgs, nixpkgs,
nixpkgs-25-11, nixpkgs-25-11,
nixpkgs-my-features,
home-manager, home-manager,
nixvim, nixvim,
sops-nix, sops-nix,
@@ -52,6 +54,7 @@
inputs inputs
nixpkgs nixpkgs
nixpkgs-25-11 nixpkgs-25-11
nixpkgs-my-features
home-manager home-manager
; ;
}; };
+2
View File
@@ -7,6 +7,7 @@
inputs, inputs,
nixpkgs, nixpkgs,
nixpkgs-25-11, nixpkgs-25-11,
nixpkgs-my-features,
home-manager, home-manager,
}: }:
name: name:
@@ -32,6 +33,7 @@ let
config.allowUnfree = true; config.allowUnfree = true;
}; };
pkgs-25-11 = nixpkgs-25-11.legacyPackages.${system}; pkgs-25-11 = nixpkgs-25-11.legacyPackages.${system};
pkgs-my-features = nixpkgs-my-features.legacyPackages.${system};
currentSystem = system; currentSystem = system;
currentSystemName = name; currentSystemName = name;
currentSystemUser = user; currentSystemUser = user;