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
Fix deprecation warnings
author
Sean Aye
date
1 week ago
(Jun 15, 2026, 10:20 PM -0400)
commit
39cc10f1
39cc10f119cf2dd506f2b4cc77288601c28bca1e
parent
6d76d1d0
6d76d1d053fee8242da6d64846f1577670acb4c6
change-id
yrsrmsyz
yrsrmsyzzlnlvzwpwknqksvsvwlookvq
+6
-6
2 changed files
Expand all
Collapse all
Unified
Split
modules
desktop.nix
sean.nix
+2
modules/desktop.nix
Reviewed
···
8
8
9
9
catppuccin = {
10
10
enable = true;
11
11
+
autoEnable = true;
11
12
flavor = "frappe";
12
13
};
13
14
···
378
379
379
380
catppuccin = {
380
381
enable = true;
382
382
+
autoEnable = true;
381
383
flavor = "frappe";
382
384
};
383
385
+4
-6
modules/sean.nix
Reviewed
···
60
60
programs.ssh = {
61
61
enable = true;
62
62
enableDefaultConfig = false;
63
63
-
matchBlocks = {
64
64
-
"*" = {
65
65
-
identityFile = [
66
66
-
"${config.home.homeDirectory}/.ssh/id_ed25519_sk_rk"
67
67
-
];
68
68
-
};
63
63
+
settings."*" = {
64
64
+
IdentityFile = [
65
65
+
"${config.home.homeDirectory}/.ssh/id_ed25519_sk_rk"
66
66
+
];
69
67
};
70
68
};
71
69