diff options
| -rw-r--r-- | flake.lock | 23 | ||||
| -rw-r--r-- | flake.nix | 7 |
2 files changed, 4 insertions, 26 deletions
@@ -747,29 +747,13 @@ "type": "github" } }, - "nixpkgs-unstable": { - "locked": { - "lastModified": 1709943332, - "narHash": "sha256-MCdZ9lXvCSTg23WUo9+uK9Zcw+VykCiYqF6x8Vy1Dyo=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "b046a81451dc41d818e8f22736e7d5e8d7d67699", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable-small", - "repo": "nixpkgs", - "type": "github" - } - }, "nixpkgs_2": { "locked": { - "lastModified": 1709909254, - "narHash": "sha256-C9HGaGbYlWv/lBXtwxAD+tkwVqIDImNLVlA6Kma4vOg=", + "lastModified": 1710248792, + "narHash": "sha256-yFyWw4na+nJgtXwhHs2SJSy5Lcw94/FcMbBOorlGdfI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "033e72165ef3f3b6be6d901444ed5e5d0ef699aa", + "rev": "efbb274f364c918b9937574de879b5874b5833cc", "type": "github" }, "original": { @@ -1036,7 +1020,6 @@ "inputs": { "my-nixpkgs": "my-nixpkgs", "nixpkgs": "nixpkgs_2", - "nixpkgs-unstable": "nixpkgs-unstable", "personal-webpage": "personal-webpage" } }, @@ -6,11 +6,10 @@ }; my-nixpkgs.url = "github:qaristote/my-nixpkgs"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11-small"; - nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small"; }; outputs = - { self, nixpkgs, nixpkgs-unstable, my-nixpkgs, personal-webpage, ... }: { + { self, nixpkgs, my-nixpkgs, personal-webpage, ... }: { nixosConfigurations = let system = "x86_64-linux"; commonModules = [ @@ -21,10 +20,6 @@ # TODO the order shouldn't matter, yet this overlay doesn't work # if it comes first my-nixpkgs.overlays.personal - (_: prev: { - inherit (nixpkgs-unstable.legacyPackages."${prev.system}") - filtron; - }) ]; }) ]; |
