nixos/home-manager/home.nix
ISnortPennies 733eda4798 made username easily changable
switched from independant home-manager updating to unified updating
updated disk parttion uuid's after resintalling
2023-01-23 22:51:41 -05:00

32 lines
620 B
Nix

{config, pkgs, username, ...}:
{
imports = [
./librewolf.nix
./sxhkd.nix
./rofi.nix
./polybar.nix
./theme.nix
./picom.nix
./git.nix
./spicetify.nix
./neovim
];
xsession.numlock.enable = true;
programs.home-manager.enable = true;
home = {
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "23.05";
file = {
".background-image".source = ../images/nix-stars.png;
".config" = {
source = ./config;
recursive = true;
};
".dwm" = {
source = ./dwm;
recursive = true;
};
};
};
}