Compare commits
2 commits
5bf8070ee0
...
fdd286c19f
Author | SHA1 | Date | |
---|---|---|---|
|
fdd286c19f | ||
|
4a4be84a33 |
|
@ -18,6 +18,7 @@
|
||||||
++ [(import ./services.nix)]
|
++ [(import ./services.nix)]
|
||||||
++ [(import ./gaming.nix)]
|
++ [(import ./gaming.nix)]
|
||||||
++ [(import ./system.nix)]
|
++ [(import ./system.nix)]
|
||||||
|
++ [(import ./stylix.nix)]
|
||||||
++ [(import ./user.nix)]
|
++ [(import ./user.nix)]
|
||||||
++ [(import ./wayland.nix)]
|
++ [(import ./wayland.nix)]
|
||||||
++ [(import ./virtualisation.nix)];
|
++ [(import ./virtualisation.nix)];
|
||||||
|
|
11
modules/core/stylix.nix
Normal file
11
modules/core/stylix.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [inputs.stylix.nixosModules.stylix];
|
||||||
|
stylix = {
|
||||||
|
enable = true;
|
||||||
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||||
|
};
|
||||||
|
}
|
|
@ -17,8 +17,6 @@
|
||||||
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
|
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
|
||||||
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
||||||
QT_QPA_PLATFORM = "wayland";
|
QT_QPA_PLATFORM = "wayland";
|
||||||
QT_QPA_PLATFORMTHEME = "qt5ct";
|
|
||||||
QT_STYLE_OVERRIDE = "kvantum";
|
|
||||||
MOZ_ENABLE_WAYLAND = "1";
|
MOZ_ENABLE_WAYLAND = "1";
|
||||||
MOZ_USE_XINPUT2 = "1";
|
MOZ_USE_XINPUT2 = "1";
|
||||||
WLR_BACKEND = "vulkan";
|
WLR_BACKEND = "vulkan";
|
||||||
|
@ -26,7 +24,6 @@
|
||||||
XDG_SESSION_TYPE = "wayland";
|
XDG_SESSION_TYPE = "wayland";
|
||||||
SDL_VIDEODRIVER = "wayland";
|
SDL_VIDEODRIVER = "wayland";
|
||||||
CLUTTER_BACKEND = "wayland";
|
CLUTTER_BACKEND = "wayland";
|
||||||
GTK_THEME = "Dracula";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
wayland.windowManager.hyprland.systemd.variables = ["--all"];
|
wayland.windowManager.hyprland.systemd.variables = ["--all"];
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
{
|
{
|
||||||
inputs,
|
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [inputs.stylix.homeModules.stylix];
|
|
||||||
|
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
autoEnable = true;
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||||
targets = {
|
targets = {
|
||||||
librewolf.profileNames = ["pedro"];
|
librewolf.profileNames = ["pedro"];
|
||||||
|
@ -22,10 +20,7 @@
|
||||||
name = "JetBrainsMono Nerd Font";
|
name = "JetBrainsMono Nerd Font";
|
||||||
};
|
};
|
||||||
|
|
||||||
emoji = {
|
emoji = config.stylix.fonts.monospace;
|
||||||
package = pkgs.noto-fonts-emoji;
|
|
||||||
name = "Noto Color Emoji";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
cursor = {
|
cursor = {
|
||||||
|
|
Loading…
Reference in a new issue