diff options
Diffstat (limited to 'vps-configuration.nix')
-rw-r--r-- | vps-configuration.nix | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/vps-configuration.nix b/vps-configuration.nix index 8122cad..cc7cf3b 100644 --- a/vps-configuration.nix +++ b/vps-configuration.nix @@ -66,12 +66,18 @@ in { interfaces.ens3.useDHCP = true; }; - environment.systemPackages = with pkgs; [ - vim - git - gitAndTools.git-annex - gotop - ]; + environment = { + systemPackages = with pkgs; [ + vim + git + gitAndTools.git-annex + gotop + ]; + + shellAliases = { + l = "ls -lahF"; + }; + }; networking.firewall.allowedTCPPorts = [ config.openSSHPort |