Files
nix-config/systems/vm/configuration.nix
2024-05-15 19:32:39 +02:00

24 lines
411 B
Nix

{pkgs, config, ...}:
{
age.identityPaths = [ /home/kopatz/.ssh/id_rsa ];
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 = {
lxqt.enable = true;
};
};
}