nvim:removed colorizer, added TCP ports in configs and misc stuff

This commit is contained in:
2021-05-30 08:26:29 +05:30
parent 28cda002d5
commit 8952fafe65
9 changed files with 18 additions and 7 deletions

View File

@@ -15,7 +15,13 @@
options = [ "bind" ];
};
swapDevices = [ ];
swapDevices = [
{
device = "/swapfile";
priority = 0;
size = 10240;
}
];
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
hardware.firmware = [ pkgs.raspberrypiWirelessFirmware ];

View File

@@ -2,6 +2,7 @@
{
networking = {
hostName = "Marisa";
firewall.allowedTCPPorts = [ 22 80 ];
wireless = {
enable = false;
iwd.enable = true;

View File

@@ -5,7 +5,8 @@
gnumake
htop
vim
libraspberrypi
tailscale
wireguard
];
programs = {
zsh = {

View File

@@ -5,5 +5,6 @@
enable = true;
permitRootLogin = "yes";
};
tailscale.enable = true;
};
}