❄️ Dotfiles for our NixOS system configuration.
1{ pkgs, ... }: 2 3{ 4 programs.hyfetch = { 5 enable = true; 6 7 settings = { 8 preset = "transgender"; 9 mode = "rgb"; 10 light_dark = "dark"; 11 lightness = 0.65; 12 13 color_align = { 14 mode = "horizontal"; 15 custom_colors = []; 16 fore_back = null; 17 }; 18 19 backend = "fastfetch"; 20 args = null; 21 distro = null; 22 pride_month_shown = []; 23 pride_month_disable = false; 24 }; 25 }; 26 27 programs.fastfetch = { 28 enable = true; 29 settings = builtins.fromJSON ( 30 builtins.unsafeDiscardStringContext ( 31 builtins.readFile ../../files/fastfetch.jsonc 32 ) 33 ); 34 }; 35 36 home.packages = with pkgs; [ pciutils ]; # Required to display GPU 37}