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

25
home-manager/root.nix Normal file
View file

@ -0,0 +1,25 @@
{config, pkgs, ...}:
{
imports = [
./theme.nix
./git.nix
./neovim.nix
];
xsession.numlock.enable = true;
programs.home-manager.enable = true;
home = {
username = "root";
homeDirectory = "/root";
stateVersion = "22.11";
file = {
".config/Thunar" = {
source = ./config/Thunar;
recursive = true;
};
".config/neofetch/config.conf" = {
source = ./config/neofetch/config.conf;
recursive = false;
};
};
};
}