summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-19 16:44:12 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-19 16:54:15 +0100
commit7532f335a3ed8a898e2df95f06faa38bad2b8e5d (patch)
tree6411db9655a6ff1ab8002faa22131387178e097e /flake.nix
parent093cb612282f48d15ba295f109660e47a22f8e39 (diff)
rollback to nixos-stable (fix ihatemoney and searx)
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 165e627..3541de1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -5,16 +5,20 @@
inputs.nixpkgs.follows = "/nixpkgs";
};
my-nixpkgs.url = "git+file:///home/qaristote/code/nix/my-nixpkgs";
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11-small";
+ nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small";
};
- outputs = { self, nixpkgs, my-nixpkgs, personal-webpage, ... }: {
+ outputs = { self, nixpkgs, nixpkgs-unstable, my-nixpkgs, personal-webpage, ... }: {
nixosConfigurations = let
system = "x86_64-linux";
commonModules = [
my-nixpkgs.nixosModules.personal
({ ... }: {
nixpkgs.overlays =
- [ my-nixpkgs.overlays.personal personal-webpage.overlays.default ];
+ [ my-nixpkgs.overlays.personal personal-webpage.overlays.default (_: prev: {
+ inherit (nixpkgs-unstable.legacyPackages."${prev.system}") filtron;
+ })];
})
];
in {