switch back to nixfmt
This commit is contained in:
parent
6d30e0a9f5
commit
62032eab6d
37 changed files with 797 additions and 689 deletions
|
|
@ -4,7 +4,8 @@
|
|||
pkgs-unstable,
|
||||
spicetify-nix,
|
||||
...
|
||||
}: {
|
||||
}:
|
||||
{
|
||||
catppuccin = {
|
||||
accent = "blue";
|
||||
flavor = "mocha";
|
||||
|
|
@ -18,28 +19,30 @@
|
|||
pkgs.daggerfall-unity
|
||||
];
|
||||
|
||||
programs.spicetify = let
|
||||
spicePkgs = spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
||||
in {
|
||||
enable = true;
|
||||
programs.spicetify =
|
||||
let
|
||||
spicePkgs = spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
||||
in
|
||||
{
|
||||
enable = true;
|
||||
|
||||
enabledExtensions = with spicePkgs.extensions; [
|
||||
adblock
|
||||
hidePodcasts
|
||||
shuffle # shuffle+ (special characters are sanitized out of extension names)
|
||||
];
|
||||
enabledCustomApps = with spicePkgs.apps; [
|
||||
newReleases
|
||||
ncsVisualizer
|
||||
];
|
||||
enabledSnippets = with spicePkgs.snippets; [
|
||||
rotatingCoverart
|
||||
pointer
|
||||
];
|
||||
enabledExtensions = with spicePkgs.extensions; [
|
||||
adblock
|
||||
hidePodcasts
|
||||
shuffle # shuffle+ (special characters are sanitized out of extension names)
|
||||
];
|
||||
enabledCustomApps = with spicePkgs.apps; [
|
||||
newReleases
|
||||
ncsVisualizer
|
||||
];
|
||||
enabledSnippets = with spicePkgs.snippets; [
|
||||
rotatingCoverart
|
||||
pointer
|
||||
];
|
||||
|
||||
theme = spicePkgs.themes.catppuccin;
|
||||
colorScheme = config.catppuccin.flavor;
|
||||
};
|
||||
theme = spicePkgs.themes.catppuccin;
|
||||
colorScheme = config.catppuccin.flavor;
|
||||
};
|
||||
|
||||
programs.plasma = {
|
||||
panels = [
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
catppuccin = {
|
||||
accent = "lavender";
|
||||
flavor = "macchiato";
|
||||
|
|
@ -34,7 +35,7 @@
|
|||
|
||||
shortcuts = {
|
||||
# this is really annoying on apple laptops
|
||||
org_kde_powerdevil.Sleep = [];
|
||||
org_kde_powerdevil.Sleep = [ ];
|
||||
};
|
||||
|
||||
panels = [
|
||||
|
|
@ -50,7 +51,7 @@
|
|||
activeTaskSource = "activeTask";
|
||||
};
|
||||
layout = {
|
||||
elements = ["windowTitle"];
|
||||
elements = [ "windowTitle" ];
|
||||
horizontalAlignment = "right";
|
||||
showDisabledElements = "deactivated";
|
||||
verticalAlignment = "center";
|
||||
|
|
|
|||
|
|
@ -2,13 +2,14 @@
|
|||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
}:
|
||||
{
|
||||
catppuccin = {
|
||||
accent = "green";
|
||||
flavor = "mocha";
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [];
|
||||
home.packages = with pkgs; [ ];
|
||||
|
||||
programs.plasma = {
|
||||
panels = [
|
||||
|
|
@ -24,7 +25,7 @@
|
|||
activeTaskSource = "activeTask";
|
||||
};
|
||||
layout = {
|
||||
elements = ["windowTitle"];
|
||||
elements = [ "windowTitle" ];
|
||||
horizontalAlignment = "right";
|
||||
showDisabledElements = "deactivated";
|
||||
verticalAlignment = "center";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue