mirror of
https://github.com/nikdoof/nixos-config.git
synced 2025-12-21 22:49:30 +00:00
Add more common parts
This commit is contained in:
23
common.nix
23
common.nix
@@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user