This commit is contained in:
2026-01-08 00:34:44 +00:00
parent 3272868b58
commit c19546a225
10 changed files with 314 additions and 41 deletions

View File

@@ -4,5 +4,6 @@
./sddm.nix
./hardware.nix
./tailscale.nix
./fonts.nix
];
}

View File

@@ -7,7 +7,7 @@
fastfetch
wget
];
programs.bash.interactiveShellInit = ''
if [[ $(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm) != "fish" && -z ''${BASH_EXECUTION_STRING} ]]
then

View File

@@ -0,0 +1,7 @@
{
pkgs,
lib,
...
} : {
fonts.packages = builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts);
}