Files
dotfiles/home/tardis.nix
T

38 lines
665 B
Nix

{ inputs, pkgs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
in
{
imports = [
inputs.spicetify-nix.homeManagerModules.spicetify
./battery
./dunst
./kitty
./kutu
./picom
./rofi
];
xsession = {
enable = true;
windowManager.command = "kutu.rb";
};
home.file.".xinitrc".text = ''
if [ -f ~/.xsession ]; then
exec dbus-run-session ~/.xsession
fi
'';
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblockify
hidePodcasts
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}