17 lines
328 B
Nix
17 lines
328 B
Nix
{ pkgs, userSettings, ... }:
|
|
{
|
|
home.username = userSettings.username;
|
|
home.homeDirectory = "/home/" + userSettings.username;
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
imports = [
|
|
../../user/utils/alacritty.nix
|
|
../../user/wm/xmonad/xmonad.nix
|
|
];
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
home.packages = with pkgs; [];
|
|
}
|