added spicetify configuration and home-manager changes

This commit is contained in:
ISnortPennies 2022-08-10 13:04:51 -04:00 committed by ISnortPennies
parent be44e60b8c
commit 30b43b8bc7
8 changed files with 141 additions and 20 deletions

View file

@ -1,30 +0,0 @@
{config, pkgs, home-manager, ...}:
{
imports = [
./firefox.nix
./bspwm.nix
./sxhkd.nix
./rofi.nix
./polybar.nix
./dunst.nix
./alacritty.nix
./theme.nix
./picom.nix
./git.nix
./neovim.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;
};
};
};
}