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
enable ssh
author
Sean Aye
date
10 months ago
(Aug 1, 2025, 11:19 AM -0400)
commit
c040b0c4
c040b0c4296e23243d8b678b8730fdecaacdb2c2
parent
1f786965
1f786965796917c2bfe3121eae62cc67af6bace9
change-id
nnnumnny
nnnumnnyzwuwzkmrnrulnwokuyuwouuu
+16
-1
2 changed files
Expand all
Collapse all
Unified
Split
configuration.nix
home.nix
+13
-1
configuration.nix
Reviewed
···
109
109
110
110
services.udisks2.enable = true;
111
111
services.tailscale.enable = true;
112
112
+
services.openssh = {
113
113
+
enable = true;
114
114
+
ports = [ 5432 ];
115
115
+
settings = {
116
116
+
PasswordAuthentication = false;
117
117
+
KbdInteractiveAuthentication = false;
118
118
+
PermitRootLogin = "no";
119
119
+
AllowUsers = [ "sean" ];
120
120
+
};
121
121
+
};
112
122
113
123
# Define a user account. Don't forget to set a password with ‘passwd’.
114
124
users.groups.storage = { };
115
125
users.users.sean = {
126
126
+
openssh.authorizedKeys.keys = [
127
127
+
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCIqgZ7kedxo+mOW7YG73Vp3zel3h180y3GKvHtRsXfGlpIIvRDy7pgCBQ4AGXYD4y78URQmFohYSAPqCPOPaWcU2un3XG9KvCzEsHmsbskPonitUmCiKvrKkb6oW4jCBtd7AEtBn+AiajAQFtPZ7NN2Df3AmTypvR6Irg7R+nxnfc9NTIHmGvxSDyWcbb4pguL20sctUSqGL6xGh8q/bqhdOThSimM+z9bEUNxK/5rPhwkNniMrp4pJcUrUiAh5/4DiRFG6KT+oeg+/myoz/Z1sPvAs7u/8JDQI4RshRD8Hu0oTkRBN6Hxj478q2SXbeBUZlD6IdjP3RhGpmSecoDdtWqKbpuV3eVRtQtba3KL86GBeV/bugaOdJ1Aud+1SOFJreAAuvxzMMKT+cdQZk6oOPP148DA/No+mDm/2S43lcdCXh79wA6YRAmKQ8jmZxTCtPutrvuZK1rguvvUlEoG/vhdNHh7eDa4Td07V6bjCRPUl8qk/e4M0E3pwsTlZc="
128
128
+
];
116
129
isNormalUser = true;
117
130
description = "Sean Aye";
118
131
extraGroups = [
···
155
168
nixarr = {
156
169
enable = true;
157
170
mediaDir = "/mnt/storage1/nixarr/media";
158
158
-
stateDir = "/mnt/storage1/nixarr/.state";
159
171
vpn = {
160
172
enable = true;
161
173
wgConf = "/mnt/storage1/nixarr/wireguard.conf";
+3
home.nix
Reviewed
···
84
84
};
85
85
86
86
nixpkgs.config.allowUnfree = true;
87
87
+
nixpkgs.config.permittedInsecurePackages = [
88
88
+
"libsoup-2.74.3"
89
89
+
];
87
90
88
91
xdg.configFile."waybar/config.jsonc".source = ./waybar/config.jsonc;
89
92
programs.waybar = {