feat: introduced new home-manager features
Changed wallpaper to better fit the style of the WM - affected common variables - affected hyprland configuration - affected stylix configuration - included additional flake inputs Added Spicetify packages (not working) Added obs-studio home-manager program option Added vimkey navigation keybinds for Hyprland
This commit is contained in:
parent
c0ef5f3d5f
commit
5515d4a9cd
9 changed files with 66 additions and 5 deletions
26
home-manager/stvnliu/spicetify.nix
Normal file
26
home-manager/stvnliu/spicetify.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}: let
|
||||
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
||||
in {
|
||||
# allow spotify to be installed if you don't have unfree enabled already
|
||||
nixpkgs.config.allowUnfreePredicate = pkg:
|
||||
builtins.elem (lib.getName pkg) [
|
||||
"spotify"
|
||||
];
|
||||
programs.spicetify = {
|
||||
enable = true;
|
||||
theme = spicePkgs.themes.onepunch;
|
||||
colorScheme = "Dark";
|
||||
|
||||
enabledExtensions = with spicePkgs.extensions; [
|
||||
adblock
|
||||
fullAppDisplay
|
||||
shuffle # shuffle+ (special characters are sanitized out of ext names)
|
||||
hidePodcasts
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue