From 459ce16ac6a473fe1d9d6a45f793b1f9a0fb93c9 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 25 Aug 2024 19:12:09 +0800 Subject: [PATCH] nixos/suites: add programs --- modules/nixos/_private/suites/dev.nix | 3 ++- modules/nixos/_private/suites/filesystem.nix | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/nixos/_private/suites/dev.nix b/modules/nixos/_private/suites/dev.nix index b206a47c..92474881 100644 --- a/modules/nixos/_private/suites/dev.nix +++ b/modules/nixos/_private/suites/dev.nix @@ -72,6 +72,7 @@ in { bandwhich # Sniffing your packets. cachix # Compile no more by using someone's binary cache! direnv # The power of local development environment. + difftastic # Cracked version of diff. lazygit # Git interface for the lazy. lazydocker # Git interface for the lazy. fd # Oh nice, a more reliable `find`. @@ -90,7 +91,7 @@ in { ++ (lib.optionals config.programs.git.enable (with pkgs; [ tea # Make some Tea... hut # ...in the Hut... - github-cli # ...in the GitHub CLI. + github-cli # ...in the Git Hub... git-filter-repo # History is written by the victors (and force-pushers which are surely not victors). ])); diff --git a/modules/nixos/_private/suites/filesystem.nix b/modules/nixos/_private/suites/filesystem.nix index 5efeb511..3fb89c07 100644 --- a/modules/nixos/_private/suites/filesystem.nix +++ b/modules/nixos/_private/suites/filesystem.nix @@ -29,6 +29,7 @@ in # Installing filesystem debugging utilities. environment.systemPackages = with pkgs; [ afuse + ntfs3g ]; })