Skip to content

Commit 47043d8

Browse files
committed
update nixpkgs
1 parent bb13f16 commit 47043d8

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

devShell.nix

+1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ in mkShell {
142142
colmena
143143
vault
144144
bashInteractive
145+
nixdoc
145146
];
146147
shellHook = ''
147148
export NIX_PATH=${pkgs.path}

flake.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "Consul Deploy";
33

44
inputs = {
5-
nixpkgs.url = "github:NixOS/nixpkgs/9370544d849b";
5+
nixpkgs.url = "github:NixOS/nixpkgs/c41b26e688ff";
66
# terraform module
77
terranix = {
88
url = "github:terranix/terranix";

generators/minimal-default.nix

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ let
44
username = "main";
55
password = "alface";
66
in {
7-
services.openssh.enable = true;
8-
services.openssh.passwordAuthentication = false;
7+
services.openssh = {
8+
enable = true;
9+
settings = { PasswordAuthentication = true; };
10+
};
911
fileSystems."/" = {
1012
device = "/dev/disk/by-label/nixos";
1113
fsType = "ext4";

0 commit comments

Comments
 (0)