2: Moved Spicetify from system/modules to home/modules/media and changed Spicetify theme from Catppuccin Mocha to Text-CatppuccinMocha
This commit is contained in:
parent
d62a9a8f07
commit
b8253664b0
13
flake.nix
13
flake.nix
@ -86,19 +86,16 @@
|
|||||||
./hosts/precision-5530/home/home.nix
|
./hosts/precision-5530/home/home.nix
|
||||||
nixvim.homeManagerModules.nixvim
|
nixvim.homeManagerModules.nixvim
|
||||||
walker.homeManagerModules.default
|
walker.homeManagerModules.default
|
||||||
|
spicetify-nix.homeManagerModules.default
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#inputs.minegrub-world-sel-theme.nixosModules.default
|
|
||||||
|
|
||||||
nixos-hardware.nixosModules.dell-precision-5530
|
|
||||||
|
|
||||||
nixos-cli.nixosModules.nixos-cli
|
|
||||||
|
|
||||||
lanzaboote.nixosModules.lanzaboote
|
|
||||||
|
|
||||||
./hosts/precision-5530/system
|
./hosts/precision-5530/system
|
||||||
|
#inputs.minegrub-world-sel-theme.nixosModules.default
|
||||||
|
nixos-hardware.nixosModules.dell-precision-5530
|
||||||
|
nixos-cli.nixosModules.nixos-cli
|
||||||
|
lanzaboote.nixosModules.lanzaboote
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,4 +1,8 @@
|
|||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
nicotine-plus
|
nicotine-plus
|
||||||
gimp
|
gimp
|
||||||
@ -16,4 +20,19 @@
|
|||||||
obs-studio-plugins.obs-vaapi
|
obs-studio-plugins.obs-vaapi
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.spicetify = let
|
||||||
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
||||||
|
in {
|
||||||
|
enable = true;
|
||||||
|
enabledExtensions = with spicePkgs.extensions; [
|
||||||
|
adblock
|
||||||
|
beautifulLyrics
|
||||||
|
];
|
||||||
|
theme = spicePkgs.themes.text;
|
||||||
|
colorScheme = "CatppuccinMocha";
|
||||||
|
enabledCustomApps = with spicePkgs.apps; [
|
||||||
|
lyricsPlus
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,7 +9,6 @@
|
|||||||
./kdePlasma.nix
|
./kdePlasma.nix
|
||||||
./media.nix
|
./media.nix
|
||||||
./suspendThenHibernate.nix
|
./suspendThenHibernate.nix
|
||||||
./spicetify.nix
|
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./tzLocale.nix
|
./tzLocale.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
|
|||||||
@ -1,29 +0,0 @@
|
|||||||
{
|
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
inputs,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
unstable = import <nixos-unstable> {config = {allowUnfree = true;};};
|
|
||||||
spicetify-nix = inputs.spicetify-nix;
|
|
||||||
spicePkgs = spicetify-nix.packages.${pkgs.system}.default;
|
|
||||||
in {
|
|
||||||
imports = [
|
|
||||||
inputs.spicetify-nix.nixosModules.default
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.spicetify = let
|
|
||||||
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
|
||||||
in {
|
|
||||||
enable = true;
|
|
||||||
enabledExtensions = with spicePkgs.extensions; [
|
|
||||||
adblock
|
|
||||||
beautifulLyrics
|
|
||||||
];
|
|
||||||
theme = spicePkgs.themes.catppuccin;
|
|
||||||
colorScheme = "mocha";
|
|
||||||
enabledCustomApps = with spicePkgs.apps; [
|
|
||||||
lyricsPlus
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user