configurations for my servers and desktops
nix nixos flake dots dotfiles

feat: fastfetch

+22
+22
modules/users/devin.nix
··· 28 28 alejandra 29 29 bun 30 30 coreutils 31 + fastfetch 31 32 gh 32 33 git 33 34 just ··· 43 44 programs = { 44 45 home-manager.enable = true; 45 46 47 + fastfetch = { 48 + enable = true; 49 + settings = { 50 + logo = { 51 + type = "small"; 52 + }; 53 + modules = [ 54 + "title" 55 + "uptime" 56 + "host" 57 + "os" 58 + "localip" 59 + "disk" 60 + "terminal" 61 + "media" 62 + ]; 63 + }; 64 + }; 65 + 46 66 fish = { 47 67 enable = true; 48 68 interactiveShellInit = '' ··· 51 71 end 52 72 starship init fish | source 53 73 fish_add_path /opt/homebrew/bin 74 + fastfetch 75 + set fish_greeting 54 76 ''; 55 77 }; 56 78