nixos/home-manager/home.nix
ISnortPennies 48179c0221 made system boot faster,
changed shxkd config
changed starship config
2023-01-26 00:27:30 -05:00

35 lines
574 B
Nix

{
pkgs,
settings,
lib,
...
}: {
imports = let
modules = [
"librewolf"
"sxhkd"
"theme"
"picom"
"spicetify"
];
in
lib.lists.forEach modules (
m:
./. + ("/" + m + ".nix")
)
++ [
./neovim
];
xsession.numlock.enable = true;
home = {
homeDirectory = "/home/${settings.username}";
stateVersion = settings.version;
file = {
".background-image".source = ../images/nix-stars.png;
".config" = {
source = ./config;
recursive = true;
};
};
};
}