53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
|
|
{
|
||
|
|
modulesPath,
|
||
|
|
lib,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}: {
|
||
|
|
imports = [
|
||
|
|
./disk-config.nix
|
||
|
|
];
|
||
|
|
|
||
|
|
disko.devices.disk.main.device = "/dev/vda";
|
||
|
|
|
||
|
|
boot.loader.grub = {
|
||
|
|
# no need to set devices, disko will add all devices that have a EF02 partition to the list already
|
||
|
|
# devices = [ ];
|
||
|
|
efiSupport = true;
|
||
|
|
efiInstallAsRemovable = true;
|
||
|
|
};
|
||
|
|
services.openssh.enable = true;
|
||
|
|
|
||
|
|
services = {
|
||
|
|
desktopManager.plasma6.enable = true;
|
||
|
|
|
||
|
|
displayManager.sddm.enable = true;
|
||
|
|
|
||
|
|
displayManager.sddm.wayland.enable = true;
|
||
|
|
};
|
||
|
|
|
||
|
|
networking.hostName = "fortuna";
|
||
|
|
networking.hostId = "fortuna";
|
||
|
|
|
||
|
|
programs.zsh.enable = true;
|
||
|
|
|
||
|
|
environment.systemPackages = map lib.lowPrio [
|
||
|
|
pkgs.curl
|
||
|
|
pkgs.gitMinimal
|
||
|
|
];
|
||
|
|
|
||
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
||
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFuw7D+qDzzxBKsfKEmMd7odc98m3ZEnqWYFtuKwvC9k zoey@earth"
|
||
|
|
];
|
||
|
|
|
||
|
|
users.users.zoey = {
|
||
|
|
isNormalUser = true;
|
||
|
|
description = "zoey";
|
||
|
|
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "plugdev"];
|
||
|
|
shell = pkgs.zsh;
|
||
|
|
initialHashedPassword = "$6$rounds=2000000$rFBJH7LwdEHvv.0i$HdHorWqp8REPdWPk5fEgZXX1TujRJkMxumGK0f0elFN0KRPlBjJMW2.35A.ID/o3eC/hGTwbSJAcJcwVN2zyV/";
|
||
|
|
};
|
||
|
|
|
||
|
|
system.stateVersion = "24.11";
|
||
|
|
}
|