18 lines
232 B
Nix
18 lines
232 B
Nix
{user}: {
|
|
modulesPath,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
];
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
home-manager.users.${user}.imports = [
|
|
{
|
|
home.stateVersion = "24.05";
|
|
}
|
|
../home/programs/sway.nix
|
|
];
|
|
}
|