38 lines
656 B
Nix
38 lines
656 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";
|
|
};
|
|
}
|