1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

No need for bat in systemPackages

This commit is contained in:
RGBCube 2023-11-14 11:04:36 +03:00
parent d1e2386ff7
commit e6b9aed06e
No known key found for this signature in database

View file

@ -1,10 +1,6 @@
{ lib, pkgs, systemPackages, homeConfiguration, enabled, ... }: lib.recursiveUpdate
{ homeConfiguration, enabled, ... }:
(with pkgs; systemPackages [
bat
])
(homeConfiguration [ "nixos" "root" ] {
homeConfiguration [ "nixos" "root" ] {
programs.nushell.environmentVariables = {
MANPAGER = ''"bat --plain --language man"'';
PAGER = ''"bat --plain"'';
@ -13,4 +9,4 @@
programs.bat = enabled {
config.theme = "gruvbox-dark";
};
})
}