Files
nix-config/systems/vm/configuration.nix
2024-04-17 16:33:12 +02:00

24 lines
389 B
Nix

{pkgs, config, ...}:
{
mainUser.layout = "de";
mainUser.variant = "us";
custom = {
user = {
name = "vm";
layout = "de";
variant = "us";
};
cli-tools.enable = true;
nix = {
index.enable = true;
ld.enable = true;
settings.enable = true;
};
graphical = {
plasma.enable = true;
shared.enable = true;
};
};
}