moved files to make more sense and added experimental desktop configuration

This commit is contained in:
Greg Leyda 2022-07-12 16:54:56 -04:00 committed by ISnortPennies
parent 22c5b6f826
commit 50fae0b2eb
38 changed files with 533 additions and 191 deletions

28
home-manager/home-manager.nix Executable file
View file

@ -0,0 +1,28 @@
{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
];
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;
};
};
};
}