nix: stop using with

namespace pollution
This commit is contained in:
Léana 江 2024-04-23 19:05:53 +02:00 committed by Léana 江
parent 6877096a26
commit 10b33e5584
15 changed files with 132 additions and 125 deletions

View file

@ -17,10 +17,10 @@
options = "--delete-older-than 30d";
};
environment.systemPackages = with pkgs; [
vim
gnumake
gnused
cachix
environment.systemPackages = [
pkgs.vim
pkgs.gnumake
pkgs.gnused
pkgs.cachix
];
}