Small changes

This commit is contained in:
2022-04-06 19:38:19 -04:00
parent 4d4b0b8240
commit c8bf265f83
6 changed files with 12 additions and 16 deletions

View File

@@ -15,6 +15,9 @@
networking.useDHCP = false;
networking.firewall.enable = true;
networking.firewall.allowPing = true;
time.timeZone = "America/New_York";
i18n.defaultLocale = "en_US.UTF-8";
@@ -34,6 +37,8 @@
usbutils
killall
screen
micro
helix
];
nixpkgs.config.allowUnfree = true;
@@ -43,12 +48,15 @@
isNormalUser = true;
extraGroups = [
"wheel"
"dialout"
"dialout" # serial
];
shell = pkgs.fish;
openssh.authorizedKeys.keys = (import ./ssh.nix).users;
hashedPassword = "$6$TuDO46rILr$gkPUuLKZe3psexhs8WFZMpzgEBGksE.c3Tjh1f8sD0KMC4oV89K2pqAABfl.Lpxu2jVdr5bgvR5cWnZRnji/r/";
};
nix.trustedUsers = [ "root" "googlebot" ];
nix.gc.automatic = true;
programs.fish.enable = true;
}