mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
15 lines
211 B
Nix
15 lines
211 B
Nix
{
|
|
username,
|
|
stateVersion,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../targets/graphical.nix
|
|
../../targets/shell.nix
|
|
];
|
|
|
|
config = {
|
|
user.username = username;
|
|
system.stateVersion = stateVersion;
|
|
};
|
|
}
|