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

40 lines
700 B
Nix
Raw Normal View History

{ pkgs, ... }: {
imports = [ ./hardware-configuration.nix ];
2024-02-29 09:53:34 -05:00
system.stateVersion = "24.05";
host = {
role = "workstation";
apps = {
development.enable = true;
2024-03-22 18:18:38 -04:00
kdeconnect.enable = true;
2024-03-04 10:57:41 -05:00
media.enable = true;
office.enable = true;
writing.enable = true;
2024-02-29 09:53:34 -05:00
};
ui = {
flatpak.enable = true;
gnome.enable = true;
};
users = {
aires = {
enable = true;
autologin = true;
services = {
syncthing = {
enable = true;
autostart = true;
2024-04-13 17:02:35 -04:00
enableTray = false;
2024-02-29 09:53:34 -05:00
};
};
};
};
};
# Configure the virtual machine created by nixos-rebuild build-vm
virtualisation.vmVariant.virtualisation = {
2024-03-04 10:57:41 -05:00
memorySize = 2048;
2024-02-29 09:53:34 -05:00
cores = 2;
};
2024-04-13 17:02:35 -04:00
}