Updates/fixes

This commit is contained in:
Daniel Flanagan 2020-10-26 14:26:50 -05:00
parent 857be77224
commit cd80dc8ba4
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
2 changed files with 10 additions and 5 deletions

View File

@ -33,6 +33,7 @@
autoconf
ncurses
weechat
python39Full
# thunar thunar-archive-plugin thunar-volman
];
};

View File

@ -8,8 +8,8 @@
nixpkgs.config.allowUnfree = true;
i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "America/Chicago";
i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "America/Chicago";
environment = {
systemPackages = with pkgs; [
@ -29,7 +29,7 @@
};
};
programs = {
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
@ -37,8 +37,12 @@
};
};
services = {
openssh.enable = true;
services = {
openssh = {
enable = true;
passwordAuthentication = false;
permitRootLogin = "no";
};
};
console = {