me like nix
0

Configure Feed

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

do stuff

author
Sean Aye
date (Aug 15, 2025, 1:44 PM -0400) commit 183be690 parent c040b0c4 change-id xyqrwqpk
+29 -2
+3 -1
configuration.nix
··· 111 111 services.tailscale.enable = true; 112 112 services.openssh = { 113 113 enable = true; 114 - ports = [ 5432 ]; 114 + ports = [ 5431 ]; 115 115 settings = { 116 116 PasswordAuthentication = false; 117 117 KbdInteractiveAuthentication = false; ··· 129 129 isNormalUser = true; 130 130 description = "Sean Aye"; 131 131 extraGroups = [ 132 + "docker" 132 133 "networkmanager" 133 134 "wheel" 134 135 "video" ··· 149 150 programs.steam = { 150 151 enable = true; 151 152 }; 153 + virtualisation.docker.enable = true; 152 154 153 155 # Allow unfree packages 154 156 nixpkgs.config.allowUnfree = true;
+26 -1
home.nix
··· 155 155 156 156 programs.direnv.enable = true; 157 157 158 + programs.zellij = { 159 + enable = true; 160 + settings = { 161 + keybinds = { 162 + unbind = [ "Ctrl q" ]; 163 + }; 164 + }; 165 + }; 166 + 158 167 programs.zen-browser.enable = true; 159 168 # programs.swww.enable = true; 160 169 programs.zoxide = { ··· 268 277 name = "rust"; 269 278 auto-format = true; 270 279 formatter = { 271 - command = "${pkgs.rustfmt}/bin/rustfmt --edition 2024"; 280 + command = "rustfmt"; 281 + args = [ 282 + "--edition" 283 + "2024" 284 + ]; 272 285 }; 273 286 indent = { 274 287 tab-width = 4; 275 288 unit = "t"; 289 + }; 290 + } 291 + { 292 + name = "astro"; 293 + auto-format = true; 294 + formatter = { 295 + command = "npx"; 296 + args = [ 297 + "prettier" 298 + "." 299 + "--write" 300 + ]; 276 301 }; 277 302 } 278 303 ];