feat: enable flakes and use swap

This commit is contained in:
s-prechtl 2025-03-31 14:22:24 +02:00
parent 168b38b49d
commit f997551e81
3 changed files with 9 additions and 28 deletions

View file

@ -37,6 +37,8 @@ in {
};
};
nix.settings.experimental-features = ["nix-command" "flakes"];
virtualisation.docker.enable = true;
virtualisation.oci-containers = {
backend = "docker";

View file

@ -28,7 +28,12 @@
options = ["fmask=0022" "dmask=0022"];
};
swapDevices = [];
swapDevices = [
{
device = "/var/lib/swapfile";
size = 2 * 1024; # swap size is in mb
}
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's

View file

@ -51,33 +51,7 @@
};
};
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
nix.settings.experimental-features = ["nix-command" "flakes"];
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
# This option defines the first version of NixOS you have installed on this particular machine,
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
#
# Most users should NEVER change this value after the initial install, for any reason,
# even if you've upgraded your system to a new NixOS release.
#
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
# so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how
# to actually do that.
#
# This value being lower than the current NixOS release does NOT mean your system is
# out of date, out of support, or vulnerable.
#
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
# and migrated your data accordingly.
#
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "24.11"; # Did you read the comment?
}