1
1
Fork 0

beatific: Use programs.<prog> where available

Based on the option source, this doesn't actually change anything, but it seems like good practice in case it becomes necessary for another program or a future version of these.
This commit is contained in:
Jaculabilis 2023-09-28 14:30:33 +00:00
parent 092250889a
commit ba9bfa01f3
1 changed files with 4 additions and 2 deletions

View File

@ -75,14 +75,16 @@ in {
curl curl
duf duf
file file
git
htop
nebula nebula
python3 python3
tree tree
vim vim
wget wget
]; ];
programs = {
git.enable = true;
htop.enable = true;
};
# The nixpkgs default is "nano", so we go one priority higher # The nixpkgs default is "nano", so we go one priority higher
environment.variables.EDITOR = mkOverride 999 "vim"; environment.variables.EDITOR = mkOverride 999 "vim";
}) })