From ba9bfa01f3cf35e4cebb455722ba771a6b209133 Mon Sep 17 00:00:00 2001 From: Jaculabilis Date: Thu, 28 Sep 2023 14:30:33 +0000 Subject: [PATCH] beatific: Use programs. 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. --- modules/beatific.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/beatific.nix b/modules/beatific.nix index bda495c..269cdc3 100644 --- a/modules/beatific.nix +++ b/modules/beatific.nix @@ -75,14 +75,16 @@ in { curl duf file - git - htop nebula python3 tree vim wget ]; + programs = { + git.enable = true; + htop.enable = true; + }; # The nixpkgs default is "nano", so we go one priority higher environment.variables.EDITOR = mkOverride 999 "vim"; })