Files
dotfiles/home/tardis.nix
T
2026-07-09 17:49:47 +01:00

38 lines
648 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 ~/.xsession
fi
'';
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblockify
hidePodcasts
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}