Compare commits
4 Commits
f670c0720c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 62ccc18181 | |||
| d175858293 | |||
| eb51057ac9 | |||
| e15e64a1f9 |
@@ -45,7 +45,6 @@
|
|||||||
nixpkgs,
|
nixpkgs,
|
||||||
home-manager,
|
home-manager,
|
||||||
agenix,
|
agenix,
|
||||||
stylix,
|
|
||||||
nixos-wsl,
|
nixos-wsl,
|
||||||
statusbar,
|
statusbar,
|
||||||
...
|
...
|
||||||
@@ -98,9 +97,6 @@
|
|||||||
|
|
||||||
agenix.homeManagerModules.default
|
agenix.homeManagerModules.default
|
||||||
./secrets
|
./secrets
|
||||||
|
|
||||||
stylix.homeModules.stylix
|
|
||||||
./home/stylix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -117,9 +113,6 @@
|
|||||||
|
|
||||||
agenix.homeManagerModules.default
|
agenix.homeManagerModules.default
|
||||||
./secrets
|
./secrets
|
||||||
|
|
||||||
stylix.homeModules.stylix
|
|
||||||
./home/stylix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./global.nix
|
./global.nix
|
||||||
./xdg-desktop.nix
|
./xdg-desktop.nix
|
||||||
@@ -16,6 +20,9 @@
|
|||||||
./editors/nvim
|
./editors/nvim
|
||||||
./editors/intellij.nix
|
./editors/intellij.nix
|
||||||
./editors/godot.nix
|
./editors/godot.nix
|
||||||
|
|
||||||
|
inputs.stylix.homeModules.stylix
|
||||||
|
./stylix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file.".face" = {
|
home.file.".face" = {
|
||||||
|
|||||||
@@ -15,6 +15,8 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
stylix.targets.rofi.enable = false;
|
||||||
|
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{
|
{config, ...}: let
|
||||||
|
inherit (config.lib.stylix) colors;
|
||||||
|
in {
|
||||||
|
stylix.targets.vesktop.enable = false;
|
||||||
|
|
||||||
wayland.windowManager.hyprland.settings.windowrulev2 =
|
wayland.windowManager.hyprland.settings.windowrulev2 =
|
||||||
[
|
[
|
||||||
"workspace 4, class:^(vesktop)$"
|
"workspace 4, class:^(vesktop)$"
|
||||||
@@ -18,8 +22,8 @@
|
|||||||
discordBranch = "stable";
|
discordBranch = "stable";
|
||||||
minimizeToTray = false;
|
minimizeToTray = false;
|
||||||
arRPC = true;
|
arRPC = true;
|
||||||
splashColor = "#cba6f7";
|
splashColor = "#${colors.base0E}";
|
||||||
splashBackground = "#1e1e2e";
|
splashBackground = "#${colors.base00}";
|
||||||
};
|
};
|
||||||
|
|
||||||
vencord = {
|
vencord = {
|
||||||
|
|||||||
@@ -9,8 +9,5 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
spicetify.enable = false;
|
spicetify.enable = false;
|
||||||
vesktop.enable = false;
|
|
||||||
|
|
||||||
rofi.enable = false;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user