My dotfiles for my nixos machines and infra
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix pls

MrSnowy 3b66a745 911266a1

+15 -12
+13 -10
server/home-manager/apps/fish.nix
··· 14 14 # ''; 15 15 # }; 16 16 # }; 17 - shellInit = '' 18 - if status is-interactive 19 - set -xg fish_color_command blue 20 - echo "Welcome to $(whoami)@$(hostname)!" 21 - echo "---" 22 - echo "Current generations:" 23 - listgens 24 - echo "" 25 - end 26 - ''; 17 + 27 18 shellAliases = { 28 19 fetch = "clear && fastfetch"; 29 20 helix = "hx"; ··· 43 34 # rebuildc = "nh os switch ~/Nixos && nh clean all"; 44 35 listgens = "sudo nix-env -p /nix/var/nix/profiles/system --list-generations"; 45 36 }; 37 + 38 + shellInit = '' 39 + if status is-interactive 40 + set -xg fish_color_command blue 41 + echo "Welcome to $(whoami)@$(hostname)!" 42 + echo "---" 43 + echo "Current generations:" 44 + listgens 45 + echo "" 46 + end 47 + ''; 48 + 46 49 }; 47 50 }
+2 -2
server/system/configuration.nix
··· 38 38 "nix-command" 39 39 "flakes" 40 40 ]; 41 - trusted-user = { 41 + trusted-users = [ 42 42 "@wheel" 43 - }; 43 + ]; 44 44 auto-optimise-store = true; 45 45 use-xdg-base-directories = true; 46 46 };