more hyprland foolery
This commit is contained in:
parent
c5cf53e24e
commit
def29befcc
7 changed files with 91 additions and 8 deletions
|
@ -6,6 +6,7 @@ _: {
|
|||
./qt.nix
|
||||
./zathura.nix
|
||||
./stylix.nix
|
||||
#./spicetify.nix
|
||||
./anyrun
|
||||
./rofi.nix
|
||||
./kitty.nix
|
||||
|
|
15
modules/gui/spicetify.nix
Normal file
15
modules/gui/spicetify.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ config, pkgs, lib, inputs, ... }:
|
||||
with lib; let
|
||||
cfg = config.modules.programs.spicetify;
|
||||
username = config.modules.other.system.username;
|
||||
#inherit (inputs.spicetify-nix.packages.${pkgs.system}.default) spicePkgs;
|
||||
inherit (inputs.spicetify-nix.packages.${pkgs.system}) spicetify-nix;
|
||||
in {
|
||||
options.modules.programs.spicetify.enable = mkEnableOption "spicetify";
|
||||
imports = [ spicetify-nix.homeManagerModule ];
|
||||
config = mkIf cfg.enable {
|
||||
programs.spicetify = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue