2023-01-28 20:49:10 +00:00
|
|
|
|
{suites, ...}: {
|
2020-01-11 06:49:18 +00:00
|
|
|
|
### root password is empty by default ###
|
2022-01-31 16:47:45 +00:00
|
|
|
|
### default password: pub-solar, optional: add your SSH keys
|
|
|
|
|
imports =
|
2023-01-28 20:49:10 +00:00
|
|
|
|
suites.iso;
|
2020-01-07 20:04:32 +00:00
|
|
|
|
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
|
|
networking.networkmanager.enable = true;
|
2020-07-14 04:04:34 +00:00
|
|
|
|
|
2023-01-28 20:49:10 +00:00
|
|
|
|
fileSystems."/" = {device = "/dev/disk/by-label/nixos";};
|
2022-07-08 12:13:41 +00:00
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
|
system.stateVersion = "22.05"; # Did you read the comment?
|
2020-01-07 20:04:32 +00:00
|
|
|
|
}
|