Split common and tardis specific home-manager modules
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{ 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user