1
0
Fork 0
nix-configuration/hosts/Khanda/default.nix

51 lines
849 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
# Settings specific to Dimaga
{
imports = [
./hardware-configuration.nix
../common
];
system.stateVersion = "24.05";
system.autoUpgrade.enable = lib.mkForce false;
host = {
role = "workstation";
apps = {
2024-04-30 13:29:07 -04:00
development.enable = true;
kdeconnect.enable = true;
media.enable = true;
office.enable = true;
pandoc.enable = true;
};
ui = {
flatpak.enable = true;
gnome.enable = true;
};
users = {
aires = {
enable = true;
autologin = true;
services = {
syncthing = {
enable = true;
autostart = true;
enableTray = false;
};
};
};
};
};
2024-05-01 09:35:38 -04:00
# Build remotely
nix.distributedBuilds = true;
2024-04-28 11:54:53 -04:00
# Configure the virtual machine created by nixos-rebuild build-vm
virtualisation.vmVariant.virtualisation = {
memorySize = 2048;
cores = 2;
};
}