mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
14 lines
226 B
Nix
14 lines
226 B
Nix
![]() |
# enabled system services
|
||
|
_: {
|
||
|
my.system = {
|
||
|
avahi.enable = true;
|
||
|
fonts.enable = true;
|
||
|
kvm = {
|
||
|
enable = true;
|
||
|
cpuFlavor = "amd";
|
||
|
};
|
||
|
podman.enable = true;
|
||
|
spell-check.enable = true;
|
||
|
};
|
||
|
}
|