Compare commits

..

4 Commits

Author SHA1 Message Date
62ccc18181 Revert "fix(stylix): Move vencord target to stylix"
This reverts commit 81d59b7cfd.
2025-12-21 00:57:53 +01:00
d175858293 Revert "fix(stylix): Move rofi target to stylix"
This reverts commit e8c5df1a80.
2025-12-21 00:57:03 +01:00
eb51057ac9 Revert "fix(vesktop): Make vesktop splash colors static"
This reverts commit f670c0720c.
2025-12-21 00:56:52 +01:00
e15e64a1f9 feat(stylix): Move stylix to home/demenik.nix 2025-12-21 00:56:42 +01:00
5 changed files with 17 additions and 14 deletions

View File

@@ -45,7 +45,6 @@
nixpkgs,
home-manager,
agenix,
stylix,
nixos-wsl,
statusbar,
...
@@ -98,9 +97,6 @@
agenix.homeManagerModules.default
./secrets
stylix.homeModules.stylix
./home/stylix
];
};
@@ -117,9 +113,6 @@
agenix.homeManagerModules.default
./secrets
stylix.homeModules.stylix
./home/stylix
];
};

View File

@@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
inputs,
...
}: {
imports = [
./global.nix
./xdg-desktop.nix
@@ -16,6 +20,9 @@
./editors/nvim
./editors/intellij.nix
./editors/godot.nix
inputs.stylix.homeModules.stylix
./stylix
];
home.file.".face" = {

View File

@@ -15,6 +15,8 @@
];
};
stylix.targets.rofi.enable = false;
programs.rofi = {
enable = true;
extraConfig = {

View File

@@ -1,4 +1,8 @@
{
{config, ...}: let
inherit (config.lib.stylix) colors;
in {
stylix.targets.vesktop.enable = false;
wayland.windowManager.hyprland.settings.windowrulev2 =
[
"workspace 4, class:^(vesktop)$"
@@ -18,8 +22,8 @@
discordBranch = "stable";
minimizeToTray = false;
arRPC = true;
splashColor = "#cba6f7";
splashBackground = "#1e1e2e";
splashColor = "#${colors.base0E}";
splashBackground = "#${colors.base00}";
};
vencord = {

View File

@@ -9,8 +9,5 @@
};
spicetify.enable = false;
vesktop.enable = false;
rofi.enable = false;
};
}