nichts/alt/home/vali/xfce.nix
2024-04-09 23:11:33 +02:00

18 lines
441 B
Nix
Executable file

{ inputs, outputs, pkgs, user, ... }:
{
imports = [
# Would look like this:
# ../../terminal/zsh/home.nix
inputs.schizofox.homeManagerModule
../../modules/web/schizofox.nix
#../../modules/terminal/zsh/home.nix
];
xdg.configHome = "/home/${user}/.config/";
programs.home-manager.enable = true;
home = {
stateVersion = "23.11";
username = "${user}";
homeDirectory = "/home/${user}";
};
}