ported over nixos desktop config

This commit is contained in:
Thilo Billerbeck 2023-05-17 01:18:35 +02:00
parent 7840268f04
commit 4586a56916
3 changed files with 45 additions and 0 deletions

8
programs/dircolors.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, pkgs, lib, ... }:
{
programs.dircolors = {
enable = true;
enableZshIntegration = true;
};
}