nixos/machines/desktop/default.nix
2025-01-31 15:13:22 +01:00

15 lines
211 B
Nix

{
username,
stateVersion,
...
}: {
imports = [
../../targets/graphical.nix
../../targets/shell.nix
];
config = {
user.username = username;
system.stateVersion = stateVersion;
};
}