alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
atuin and steam
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
5e39b926
5e39b9268f42767cbd3ee79d6f54464c92e0d0db
parent
9747c116
9747c116a06925fbbd86e8385e10a8790c7314d7
change-id
losponmm
losponmmxvtttusmqwoxtktwmzulqssr
+35
-8
3 changed files
Expand all
Collapse all
Unified
Split
hosts
common
common.nix
home.nix
mira
configuration.nix
+16
hosts/common/common.nix
Reviewed
···
154
154
shell = pkgs.fish;
155
155
};
156
156
157
157
+
programs.steam = {
158
158
+
enable = true;
159
159
+
remotePlay.openFirewall = true;
160
160
+
gamescopeSession.enable = true;
161
161
+
extraCompatPackages = with pkgs; [
162
162
+
proton-ge-bin
163
163
+
];
164
164
+
};
165
165
+
166
166
+
programs.gamemode.enable = true;
167
167
+
168
168
+
programs.gamescope = {
169
169
+
enable = true;
170
170
+
capSysNice = true;
171
171
+
};
172
172
+
157
173
programs.fish.enable = true;
158
174
programs._1password.enable = true;
159
175
programs._1password-gui = {
+19
-4
hosts/common/home.nix
Reviewed
···
19
19
window-rules = [
20
20
{
21
21
geometry-corner-radius = {
22
22
-
top-left = 12.0;
23
23
-
top-right = 12.0;
24
24
-
bottom-left = 12.0;
25
25
-
bottom-right = 12.0;
22
22
+
top-left = 5.0;
23
23
+
top-right = 5.0;
24
24
+
bottom-left = 5.0;
25
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
35
+
left = 8;
36
36
+
right = 8;
35
37
};
38
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
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
575
+
# Initialize atuin shell history
576
576
+
atuin init fish | source
577
577
+
578
578
+
function y
579
579
+
set tmp (mktemp -t "yazi-cwd.XXXXXX")
580
580
+
yazi $argv --cwd-file="$tmp"
581
581
+
if read -z cwd < "$tmp"; and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ]
582
582
+
builtin cd -- "$cwd"
583
583
+
end
584
584
+
rm -f -- "$tmp"
585
585
+
end
571
586
'';
572
587
functions = {
573
588
s3edit = ''
-4
hosts/mira/configuration.nix
Reviewed
···
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
44
-
programs.steam = {
45
45
-
enable = true;
46
46
-
};
47
47
-
48
44
# List services that you want to enable:
49
45
services.flaresolverr.enable = true;
50
46
nixarr = {