me like nix
0

Configure Feed

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

enable ssh

author
Sean Aye
date (Aug 1, 2025, 11:19 AM -0400) commit c040b0c4 parent 1f786965 change-id nnnumnny
+16 -1
+13 -1
configuration.nix
··· 109 109 110 110 services.udisks2.enable = true; 111 111 services.tailscale.enable = true; 112 + services.openssh = { 113 + enable = true; 114 + ports = [ 5432 ]; 115 + settings = { 116 + PasswordAuthentication = false; 117 + KbdInteractiveAuthentication = false; 118 + PermitRootLogin = "no"; 119 + AllowUsers = [ "sean" ]; 120 + }; 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 + openssh.authorizedKeys.keys = [ 127 + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCIqgZ7kedxo+mOW7YG73Vp3zel3h180y3GKvHtRsXfGlpIIvRDy7pgCBQ4AGXYD4y78URQmFohYSAPqCPOPaWcU2un3XG9KvCzEsHmsbskPonitUmCiKvrKkb6oW4jCBtd7AEtBn+AiajAQFtPZ7NN2Df3AmTypvR6Irg7R+nxnfc9NTIHmGvxSDyWcbb4pguL20sctUSqGL6xGh8q/bqhdOThSimM+z9bEUNxK/5rPhwkNniMrp4pJcUrUiAh5/4DiRFG6KT+oeg+/myoz/Z1sPvAs7u/8JDQI4RshRD8Hu0oTkRBN6Hxj478q2SXbeBUZlD6IdjP3RhGpmSecoDdtWqKbpuV3eVRtQtba3KL86GBeV/bugaOdJ1Aud+1SOFJreAAuvxzMMKT+cdQZk6oOPP148DA/No+mDm/2S43lcdCXh79wA6YRAmKQ8jmZxTCtPutrvuZK1rguvvUlEoG/vhdNHh7eDa4Td07V6bjCRPUl8qk/e4M0E3pwsTlZc=" 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 - stateDir = "/mnt/storage1/nixarr/.state"; 159 171 vpn = { 160 172 enable = true; 161 173 wgConf = "/mnt/storage1/nixarr/wireguard.conf";
+3
home.nix
··· 84 84 }; 85 85 86 86 nixpkgs.config.allowUnfree = true; 87 + nixpkgs.config.permittedInsecurePackages = [ 88 + "libsoup-2.74.3" 89 + ]; 87 90 88 91 xdg.configFile."waybar/config.jsonc".source = ./waybar/config.jsonc; 89 92 programs.waybar = {