mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
24 lines
528 B
Nix
24 lines
528 B
Nix
{ enabled, ... }:
|
|
{
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
|
|
# # added to make using `pip install` work in docker build
|
|
# networking.nameservers = [ "8.8.8.8"];
|
|
|
|
# allow tcp connections for revsere proxy
|
|
networking.firewall = enabled // {
|
|
allowedTCPPorts = [
|
|
80
|
|
443
|
|
];
|
|
};
|
|
|
|
# Use the GRUB 2 boot loader.
|
|
boot.loader.grub = enabled // {
|
|
device = "/dev/sda"; # or "nodev" for efi only
|
|
};
|
|
|
|
# don't delete this you foo bar
|
|
system.stateVersion = "23.11"; # Did you read the comment?
|
|
}
|