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

46 lines
744 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ pkgs, ... }:
# Settings specific to Dimaga
{
imports = [
./hardware-configuration.nix
../common
];
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;
2024-02-29 09:53:34 -05:00
pandoc.enable = true;
};
ui = {
flatpak.enable = true;
gnome.enable = true;
};
users = {
aires = {
enable = true;
autologin = true;
services = {
syncthing = {
enable = true;
autostart = true;
2024-03-02 11:55:31 -05:00
enableTray = true;
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;
};
}