nixos/home-manager/home-manager.nix
2022-08-16 00:14:37 -04:00

30 lines
569 B
Nix
Executable file

{config, pkgs, home-manager, ...}:
{
imports = [
./zsh.nix
./firefox.nix
./bspwm.nix
./sxhkd.nix
./rofi.nix
./polybar.nix
./dunst.nix
./alacritty.nix
./theme.nix
./picom.nix
./git.nix
];
xsession.numlock.enable = true;
programs.home-manager.enable = true;
home = {
username = "gerg";
homeDirectory = "/home/gerg";
stateVersion = "22.11";
file = {
".background-image".source = ../images/stars.jpg;
".config" = {
source = ./config;
recursive = true;
};
};
};
}