diff options
-rw-r--r-- | configuration.nix | 9 | ||||
-rw-r--r-- | flake.lock | 8 | ||||
-rw-r--r-- | flake.nix | 2 |
3 files changed, 11 insertions, 8 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 = { @@ -2,16 +2,16 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1684398685, - "narHash": "sha256-TRE62m91iZ5ArVMgA+uj22Yda8JoQuuhc9uwZ+NoX+0=", + "lastModified": 1692794066, + "narHash": "sha256-H0aG8r16dj0x/Wz6wQhQxc9V7AsObOiHPaKxQgH6Y08=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "628d4bb6e9f4f0c30cfd9b23d3c1cdcec9d3cb5c", + "rev": "fc944919f743bb22379dddf18dcb72db6cff84aa", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-22.11", + "ref": "nixos-23.05", "repo": "nixpkgs", "type": "github" } @@ -2,7 +2,7 @@ description = "System environment of Adrian Kummerlaender"; inputs = { - nixpkgs.url = github:NixOS/nixpkgs/nixos-22.11; + nixpkgs.url = github:NixOS/nixpkgs/nixos-23.05; pkgs-personal.url = github:KnairdA/pkgs/master; }; |