diff options
| author | Grisha Shipunov | 2025-08-31 11:23:03 +0200 |
|---|---|---|
| committer | Grisha Shipunov | 2025-08-31 11:23:03 +0200 |
| commit | cba81505552bb0e1d4d35402e1ad7917911009b2 (patch) | |
| tree | 3440456a723025114ad5c87f4e5e1118eeb70b44 /modules | |
| parent | 34f4655f5026c30088556eee71fc97f66ed2bb75 (diff) | |
switch to nixpkgs lix
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/basic-tools/nix.nix | 19 | ||||
| -rw-r--r-- | modules/devtools.nix | 2 |
2 files changed, 19 insertions, 2 deletions
diff --git a/modules/basic-tools/nix.nix b/modules/basic-tools/nix.nix index a67c6a8..c3bc1d7 100644 --- a/modules/basic-tools/nix.nix +++ b/modules/basic-tools/nix.nix @@ -3,8 +3,27 @@ ... }: { + nixpkgs.overlays = [ + (final: prev: { + inherit (final.lixPackageSets.latest) + nixpkgs-review + nix-eval-jobs + nix-fast-build + colmena + ; + }) + ]; + + programs.direnv = { + enable = true; + nix-direnv.enable = true; + nix-direnv.package = pkgs.lixPackageSets.latest.nix-direnv; + + }; nix = { + package = pkgs.lixPackageSets.latest.lix; + extraOptions = '' experimental-features = nix-command flakes narinfo-cache-negative-ttl = 0 diff --git a/modules/devtools.nix b/modules/devtools.nix index bf8cf1b..2b81952 100644 --- a/modules/devtools.nix +++ b/modules/devtools.nix @@ -42,6 +42,4 @@ package = pkgs.wireshark; }; users.users."0xa".extraGroups = [ "wireshark" ]; - - programs.direnv.enable = true; } |
