Add more common parts

This commit is contained in:
2024-03-27 21:36:40 +00:00
parent e8e42fb163
commit 25532dd2c7
3 changed files with 41 additions and 34 deletions

View File

@@ -2,7 +2,7 @@
{
imports = [
users.nix
./users.nix
];
# Set your time zone.
@@ -14,4 +14,25 @@
font = "Lat2-Terminus16";
useXkbConfig = true; # use xkb.options in tty.
};
programs = {
zsh.enable = true;
};
environment.systemPackages = with pkgs; [
git
gnupg
lsof
gnumake
python3
];
services = {
openssh = {
enable = true;
settings = {
PermitRootLogin = "yes";
};
};
};
}