summaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2023-08-28 17:50:44 +0200
committerAdrian Kummerlaender2023-08-28 17:50:44 +0200
commitc8ddf91829b9b3104f7b69117034e744951580e0 (patch)
treec9d0a45f8434c209dcc023d5aa9888888d512e03 /configuration.nix
parenta48d3aa451fa53a0e3e4ce32d7137f452a7f54ab (diff)
downloadnixos_system-c8ddf91829b9b3104f7b69117034e744951580e0.tar
nixos_system-c8ddf91829b9b3104f7b69117034e744951580e0.tar.gz
nixos_system-c8ddf91829b9b3104f7b69117034e744951580e0.tar.bz2
nixos_system-c8ddf91829b9b3104f7b69117034e744951580e0.tar.lz
nixos_system-c8ddf91829b9b3104f7b69117034e744951580e0.tar.xz
nixos_system-c8ddf91829b9b3104f7b69117034e744951580e0.tar.zst
nixos_system-c8ddf91829b9b3104f7b69117034e744951580e0.zip
Update
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix
index 5da9f94..538745d 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -38,6 +38,7 @@
];
programs = {
+ fish.enable = true;
bash.enableCompletion = true;
gnupg.agent = {
enable = true;
@@ -47,9 +48,11 @@
services.openssh = {
enable = true;
- passwordAuthentication = false;
- permitRootLogin = "no";
- forwardX11 = true;
+ settings = {
+ PasswordAuthentication = false;
+ PermitRootLogin = "no";
+ X11Forwarding = true;
+ };
};
environment = {