Add system modules

This commit is contained in:
aloslider
2026-03-07 01:40:27 +03:00
parent c3a11470b9
commit e4abb866e9
9 changed files with 115 additions and 33 deletions
+2 -8
View File
@@ -2,6 +2,7 @@
{
imports = [
./home-manager.nix
./modules/system
./hardware-configuration.nix
];
@@ -14,9 +15,6 @@
efi.canTouchEfiVariables = true;
};
networking.hostName = "benq-serv";
networking.networkmanager.enable = true;
time.timeZone = "Europe/Moscow";
i18n = {
@@ -39,13 +37,9 @@
environment.systemPackages = with pkgs; [
git
vim
tmux
];
services.openssh.enable = true;
networking.firewall.allowedTCPPorts = [ 22 80 443 ];
networking.firewall.allowedUDPPorts = [];
system.stateVersion = "25.05";
}