My NixOS config, I don't know what I am doing, don't use this
0
fork

Configure Feed

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

Add Temurin JDKs, `nixfmt`, `dos2unix`, and `genpass` & move packages/programs to the bottom

+38 -28
+38 -28
modules/common.nix
··· 99 99 shell = pkgs.fish; 100 100 }; 101 101 102 - # ── Programs ─────────────────────────────────────────────────────────────── 103 - programs.firefox.enable = true; 104 - programs.git.enable = true; 105 - programs.nh = { 106 - enable = true; 107 - flake = "~/nix-config"; 108 - }; 109 - 110 - # ── Packages ─────────────────────────────────────────────────────────────── 111 - environment.systemPackages = with pkgs; [ 112 - vim 113 - wget 114 - msedit 115 - microsoft-edge 116 - bluetuith 117 - btop 118 - galaxy-buds-client 119 - inputs.tidaLuna.packages.${stdenv.hostPlatform.system}.default 120 - wl-clipboard 121 - nautilus 122 - ghostty 123 - _7zip-zstd-rar 124 - inputs.orion-browser.packages.${stdenv.hostPlatform.system}.default 125 - jetbrains-toolbox 126 - nixd 127 - dorion 128 - ]; 129 - 130 102 # ── Catppuccin ───────────────────────────────────────────────────────────── 131 103 catppuccin = { 132 104 enable = true; ··· 180 152 ''; 181 153 }; 182 154 }; 155 + 156 + # ── Programs ─────────────────────────────────────────────────────────────── 157 + programs = { 158 + firefox.enable = true; 159 + git.enable = true; 160 + nh = { 161 + enable = true; 162 + flake = "/home/${username}/nix-config"; 163 + }; 164 + }; 165 + 166 + # ── Packages ─────────────────────────────────────────────────────────────── 167 + environment.systemPackages = with pkgs; [ 168 + vim 169 + wget 170 + msedit 171 + microsoft-edge 172 + bluetuith 173 + btop 174 + galaxy-buds-client 175 + inputs.tidaLuna.packages.${stdenv.hostPlatform.system}.default 176 + wl-clipboard 177 + nautilus 178 + _7zip-zstd-rar 179 + inputs.orion-browser.packages.${stdenv.hostPlatform.system}.default 180 + jetbrains-toolbox 181 + nixd 182 + dorion 183 + dos2unix 184 + genpass 185 + nixfmt 186 + 187 + temurin-bin-25 188 + temurin-bin-21 189 + temurin-bin-17 190 + temurin-bin-11 191 + temurin-bin-8 192 + ]; 183 193 }