flake input patching :)

This commit is contained in:
LordGrimmauld 2024-04-26 11:44:59 +02:00
parent 919f5d17e4
commit 3dda82d830
4 changed files with 42 additions and 21 deletions

View File

@ -12,9 +12,9 @@ in
usbutils usbutils
powertop powertop
ddcutil ddcutil
# tlpui
] ++ lib.optionals graphical [ ] ++ lib.optionals graphical [
ddcui ddcui
tlpui
]; ];
# services.ddccontrol.enable = true; # services.ddccontrol.enable = true;

View File

@ -1,4 +1,4 @@
{ pkgs, config, lib, ... }: { pkgs, config, lib, inputs, system, ... }:
let let
cfg = config.grimmShared; cfg = config.grimmShared;
in in
@ -22,6 +22,7 @@ in
libsecret libsecret
vulnix vulnix
doas-sudo-shim # muscle memory doas-sudo-shim # muscle memory
inputs.agenix.packages.${system}.default
] ++ lib.optionals (tooling.enable && tooling.pass) [ ] ++ lib.optionals (tooling.enable && tooling.pass) [
pass pass
(writeShellScriptBin "passw" "pass $@") (writeShellScriptBin "passw" "pass $@")

View File

@ -78,11 +78,11 @@
"yafas": "yafas" "yafas": "yafas"
}, },
"locked": { "locked": {
"lastModified": 1713731828, "lastModified": 1714043270,
"narHash": "sha256-htFugddDpE7ziY/MdxKxD40+JejADwCkN6Ln5D8a0oY=", "narHash": "sha256-WTpyfCMHEaGWLKQR0rVTXwxFnGzyC8VYwHYVsOTdf1Q=",
"owner": "chaotic-cx", "owner": "chaotic-cx",
"repo": "nyx", "repo": "nyx",
"rev": "60b608762452d4c17ce620cb1075078827f22108", "rev": "7705ea7bb501453ffb1f085b4ddbdc606f5463f8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -485,11 +485,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1713748476, "lastModified": 1714093995,
"narHash": "sha256-FB+tCte2nOOLI7i3YvHFZZsFWDjaq+f5nn4wxt6akTQ=", "narHash": "sha256-7oYv0EJ2iqL9MZiB7QRE63nHDVMuyTgukgYZDdjL8Kg=",
"owner": "fufexan", "owner": "fufexan",
"repo": "nix-gaming", "repo": "nix-gaming",
"rev": "5dba7fd39730e14f3c54787df23c533dc98e1e0f", "rev": "a8c2a0e160e1212c67724aa89a823b55d423d157",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -544,11 +544,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1713714899, "lastModified": 1714076141,
"narHash": "sha256-+z/XjO3QJs5rLE5UOf015gdVauVRQd2vZtsFkaXBq2Y=", "narHash": "sha256-Drmja/f5MRHZCskS6mvzFqxEaZMeciScCTFxWVLqWEY=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "6143fc5eeb9c4f00163267708e26191d1e918932", "rev": "7bb2ccd8cdc44c91edba16c48d2c8f331fb3d856",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -594,11 +594,11 @@
}, },
"nixpkgs-stable_2": { "nixpkgs-stable_2": {
"locked": { "locked": {
"lastModified": 1713725259, "lastModified": 1713995372,
"narHash": "sha256-9ZR/Rbx5/Z/JZf5ehVNMoz/s5xjpP0a22tL6qNvLt5E=", "narHash": "sha256-fFE3M0vCoiSwCX02z8VF58jXFRj9enYUSTqjyHAjrds=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a5e4bbcb4780c63c79c87d29ea409abf097de3f7", "rev": "dd37924974b9202f8226ed5d74a252a9785aedf8",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -33,14 +33,35 @@
outputs = inputs @ { self, nix-gaming, agenix, hammering, nixpkgs, nixpkgs-stable, nix-locate, chaotic, ... }: outputs = inputs @ { self, nix-gaming, agenix, hammering, nixpkgs, nixpkgs-stable, nix-locate, chaotic, ... }:
let let
system = "x86_64-linux"; patches = [
stable = import nixpkgs-stable { inherit system; config.allowUnfree = true; }; {
url = "https://patch-diff.githubusercontent.com/raw/NixOS/nixpkgs/pull/305278.patch";
hash = "sha256-8RvPI8Id+Ttgv07IMBTAxkSc+K00WhiWgdgrCcULd7o=";
}
];
customNixosSystem = system: definitions:
let
stable = import nixpkgs-stable {
inherit system;
config.allowUnfree = true;
};
patched = let unpatched = nixpkgs.legacyPackages.${system}; in
unpatched.applyPatches {
name = "nixpkgs-patched";
src = inputs.nixpkgs;
patches = map unpatched.fetchpatch patches;
};
nixosSystem = import (patched + "/nixos/lib/eval-config.nix");
in
nixosSystem ({
inherit system;
specialArgs = { inherit inputs system stable; };
} // definitions);
in in
{ {
nixosConfigurations = { nixosConfigurations = {
grimmauld-nixos = nixpkgs.lib.nixosSystem { grimmauld-nixos = (customNixosSystem "x86_64-linux" {
inherit system;
specialArgs = { inherit inputs system stable; };
modules = [ modules = [
(import ./overlays) (import ./overlays)
agenix.nixosModules.default agenix.nixosModules.default
@ -52,9 +73,8 @@
./modules/users.nix ./modules/users.nix
./modules/system-packages.nix ./modules/system-packages.nix
./modules/kvm.nix ./modules/kvm.nix
{ environment.systemPackages = [ agenix.packages.${system}.default ]; }
]; ];
}; });
}; };
}; };
} }