Shared nix modules for my configurations.
0

Configure Feed

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

Fix small details

Ivan Ilak (Apr 12, 2026, 6:35 PM +0200) 9b553036 cfb25699

+7 -3
+7 -2
modules/home-manager/programs/fish.nix
··· 60 60 ]; 61 61 shellAliases = { 62 62 vim = "nvim"; 63 - ip = "ip --color=auto"; 64 63 ll = "eza -l"; 65 64 ls = "eza -g"; 66 65 tree = "eza -T"; 67 66 mkdir = "mkdir -p"; 68 67 diff = "colordiff --nobanner"; 69 - df = "df -Tha --total"; 70 68 du = "du -h"; 71 69 ps = "procs"; 70 + } 71 + // lib.optionalAttrs pkgs.stdenv.isLinux { 72 + ip = "ip --color=auto"; 73 + df = "df -Tha --total"; 72 74 flame = "flameshot gui"; 75 + } 76 + // lib.optionalAttrs pkgs.stdenv.isDarwin { 77 + df = "df -h"; 73 78 }; 74 79 shellInitLast = '' 75 80 set -gx PATH ${homeDir}/.cargo/bin $PATH
-1
modules/home-manager/shared_packages.nix
··· 24 24 developer_tools = with pkgs; [ 25 25 uv 26 26 just 27 - docker 28 27 ninja 29 28 rustc 30 29 cargo