diff options
author | Soispha <soispha@vhack.eu> | 2024-03-23 15:33:12 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-03-23 15:33:12 +0100 |
commit | bc388c1d27444b75aa8825f28f2caabfec26861d (patch) | |
tree | f55a83064e4b8d7eb57bc8d1f2239bc793934401 /flake/default.nix | |
parent | fix(flake): Use new vendored `generate_firefox_extensions` binary (diff) | |
download | nixos-config-bc388c1d27444b75aa8825f28f2caabfec26861d.tar.gz nixos-config-bc388c1d27444b75aa8825f28f2caabfec26861d.zip |
fix(flake): Import my modules stuck in nixpkgs prs directly
That makes it possible to use plain `nixpkgs-unstable` for the whole system, whilst still using my unmerged modules and packages.
Diffstat (limited to 'flake/default.nix')
-rw-r--r-- | flake/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/flake/default.nix b/flake/default.nix index 709b457b..d9643559 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -5,6 +5,7 @@ system, sysLib, nixpkgs_as_input, + nixpkgs_tfc, # modules home-manager, nixVim, @@ -50,6 +51,8 @@ ; }; defaultModules = [ + "${nixpkgs_tfc}/nixos/modules/config/xdg/portals/termfilechooser.nix" + agenix.nixosModules.default disko.nixosModules.default @@ -73,6 +76,9 @@ nixpkgs_as_input self + # extra package sources + + nixpkgs_tfc ; }; treefmtEval = treefmt-nix.lib.evalModule pkgs ( |