summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2024-03-13 10:37:47 +0100
committerquentin@aristote.fr <quentin@aristote.fr>2024-03-13 10:37:47 +0100
commitddd4385cdcba6f7fb03043d2ed72e646533eb482 (patch)
tree03c4e2c89da67ff101182c76d29c17ae1b4bffdd /flake.nix
parent4056e0cd532c503a4131e3e4fde35f21922c1a73 (diff)
remove unstable filtron overlay
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix
index 9b9ebd6..c425870 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;
- })
];
})
];