From 1f81368748f413263efae2046d396915b685b2e7 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Wed, 6 Mar 2024 18:14:24 -0500 Subject: [PATCH] added eza to system store --- system/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/system/default.nix b/system/default.nix index 0926f93c..c3ded695 100644 --- a/system/default.nix +++ b/system/default.nix @@ -6,7 +6,6 @@ ./network ./sound ]; - # Set your time zone. time.timeZone = "America/New_York"; @@ -28,6 +27,10 @@ # Allow unfree packages nixpkgs.config.allowUnfree = true; + environment.systemPackages = with pkgs; [ + eza + ]; + system.autoUpgrade = { enable = true; allowReboot = false;