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
do stuff
author
Sean Aye
date
10 months ago
(Aug 15, 2025, 1:44 PM -0400)
commit
183be690
183be690c4321e7307be0056244c91daaf4d3495
parent
c040b0c4
c040b0c4296e23243d8b678b8730fdecaacdb2c2
change-id
xyqrwqpk
xyqrwqpkruzoltkmsyyzxoxmykzxqtks
+29
-2
2 changed files
Expand all
Collapse all
Unified
Split
configuration.nix
home.nix
+3
-1
configuration.nix
Reviewed
···
111
111
services.tailscale.enable = true;
112
112
services.openssh = {
113
113
enable = true;
114
114
-
ports = [ 5432 ];
114
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
132
+
"docker"
132
133
"networkmanager"
133
134
"wheel"
134
135
"video"
···
149
150
programs.steam = {
150
151
enable = true;
151
152
};
153
153
+
virtualisation.docker.enable = true;
152
154
153
155
# Allow unfree packages
154
156
nixpkgs.config.allowUnfree = true;
+26
-1
home.nix
Reviewed
···
155
155
156
156
programs.direnv.enable = true;
157
157
158
158
+
programs.zellij = {
159
159
+
enable = true;
160
160
+
settings = {
161
161
+
keybinds = {
162
162
+
unbind = [ "Ctrl q" ];
163
163
+
};
164
164
+
};
165
165
+
};
166
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
271
-
command = "${pkgs.rustfmt}/bin/rustfmt --edition 2024";
280
280
+
command = "rustfmt";
281
281
+
args = [
282
282
+
"--edition"
283
283
+
"2024"
284
284
+
];
272
285
};
273
286
indent = {
274
287
tab-width = 4;
275
288
unit = "t";
289
289
+
};
290
290
+
}
291
291
+
{
292
292
+
name = "astro";
293
293
+
auto-format = true;
294
294
+
formatter = {
295
295
+
command = "npx";
296
296
+
args = [
297
297
+
"prettier"
298
298
+
"."
299
299
+
"--write"
300
300
+
];
276
301
};
277
302
}
278
303
];