mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
Added NordVPN via NUR
This commit is contained in:
@@ -4,5 +4,5 @@
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.loader.systemd-boot.configurationLimit = 10;
|
||||
boot.initrd.luks.devices."luks-332a07bd-65fb-4d91-91ba-fe3f594063b1".device = "/dev/disk/by-uuid/332a07bd-65fb-4d91-91ba-fe3f594063b1";
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
boot.kernelPackages = pkgs.linuxPackages_zen; # pkgs.linuxPackages_latest;
|
||||
}
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
{ ... }:
|
||||
{
|
||||
networking.networkmanager.enable = true;
|
||||
networking.firewall.allowedUDPPorts = [ 25565 ];
|
||||
networking.firewall.allowedTCPPorts = [ 25565 ];
|
||||
networking.firewall = {
|
||||
checkReversePath = false;
|
||||
allowedUDPPorts = [ 25565 1194 ];
|
||||
allowedTCPPorts = [ 25565 443 ];
|
||||
};
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
networking.wireguard.enable = true;
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
{ currentSystemUser, ... }:
|
||||
{
|
||||
virtualisation.podman.enable = true;
|
||||
virtualisation.podman.dockerCompat = true;
|
||||
|
||||
# virtualisation.podman.enable = true;
|
||||
# virtualisation.podman.dockerCompat = true;
|
||||
virtualisation.docker.enable = true;
|
||||
#
|
||||
programs.virt-manager.enable = true;
|
||||
users.groups.libvirtd.members = ["${currentSystemUser}"];
|
||||
virtualisation.libvirtd.enable = true;
|
||||
|
||||
Reference in New Issue
Block a user