me like nix
0

Configure Feed

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

atuin and steam

author
Sean Aye
date (Mar 22, 2026, 8:03 PM -0400) commit 5e39b926 parent 9747c116 change-id losponmm
+35 -8
+16
hosts/common/common.nix
··· 154 154 shell = pkgs.fish; 155 155 }; 156 156 157 + programs.steam = { 158 + enable = true; 159 + remotePlay.openFirewall = true; 160 + gamescopeSession.enable = true; 161 + extraCompatPackages = with pkgs; [ 162 + proton-ge-bin 163 + ]; 164 + }; 165 + 166 + programs.gamemode.enable = true; 167 + 168 + programs.gamescope = { 169 + enable = true; 170 + capSysNice = true; 171 + }; 172 + 157 173 programs.fish.enable = true; 158 174 programs._1password.enable = true; 159 175 programs._1password-gui = {
+19 -4
hosts/common/home.nix
··· 19 19 window-rules = [ 20 20 { 21 21 geometry-corner-radius = { 22 - top-left = 12.0; 23 - top-right = 12.0; 24 - bottom-left = 12.0; 25 - bottom-right = 12.0; 22 + top-left = 5.0; 23 + top-right = 5.0; 24 + bottom-left = 5.0; 25 + bottom-right = 5.0; 26 26 }; 27 27 clip-to-geometry = true; 28 28 draw-border-with-background = false; ··· 32 32 struts = { 33 33 top = 0; 34 34 bottom = 0; 35 + left = 8; 36 + right = 8; 35 37 }; 38 + gaps = 8; 36 39 }; 37 40 gestures = { 38 41 hot-corners = { ··· 468 471 docker-compose 469 472 discord 470 473 prismlauncher # minecraft launcher 474 + atuin 471 475 472 476 # --- FONTS ARE IMPORTANT --- 473 477 # Berkeley Mono is the main system font, keeping JetBrains and Font Awesome for waybar ··· 568 572 if test -f ~/.config/op/plugins.sh 569 573 source ~/.config/op/plugins.sh 570 574 end 575 + # Initialize atuin shell history 576 + atuin init fish | source 577 + 578 + function y 579 + set tmp (mktemp -t "yazi-cwd.XXXXXX") 580 + yazi $argv --cwd-file="$tmp" 581 + if read -z cwd < "$tmp"; and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ] 582 + builtin cd -- "$cwd" 583 + end 584 + rm -f -- "$tmp" 585 + end 571 586 ''; 572 587 functions = { 573 588 s3edit = ''
-4
hosts/mira/configuration.nix
··· 41 41 "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCIqgZ7kedxo+mOW7YG73Vp3zel3h180y3GKvHtRsXfGlpIIvRDy7pgCBQ4AGXYD4y78URQmFohYSAPqCPOPaWcU2un3XG9KvCzEsHmsbskPonitUmCiKvrKkb6oW4jCBtd7AEtBn+AiajAQFtPZ7NN2Df3AmTypvR6Irg7R+nxnfc9NTIHmGvxSDyWcbb4pguL20sctUSqGL6xGh8q/bqhdOThSimM+z9bEUNxK/5rPhwkNniMrp4pJcUrUiAh5/4DiRFG6KT+oeg+/myoz/Z1sPvAs7u/8JDQI4RshRD8Hu0oTkRBN6Hxj478q2SXbeBUZlD6IdjP3RhGpmSecoDdtWqKbpuV3eVRtQtba3KL86GBeV/bugaOdJ1Aud+1SOFJreAAuvxzMMKT+cdQZk6oOPP148DA/No+mDm/2S43lcdCXh79wA6YRAmKQ8jmZxTCtPutrvuZK1rguvvUlEoG/vhdNHh7eDa4Td07V6bjCRPUl8qk/e4M0E3pwsTlZc=" 42 42 ]; 43 43 44 - programs.steam = { 45 - enable = true; 46 - }; 47 - 48 44 # List services that you want to enable: 49 45 services.flaresolverr.enable = true; 50 46 nixarr = {