27 lines
417 B
Nix
27 lines
417 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
username,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../modules/biscuit/editor.nix
|
|
../../modules/biscuit/xserver.nix
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home = {
|
|
username = "${username}";
|
|
homeDirectory = "/home/${username}";
|
|
packages = [];
|
|
sessionVariables = {};
|
|
};
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
home.stateVersion = "23.05";
|
|
}
|