Configure icons
This commit is contained in:
parent
d031bd44ee
commit
424acf8ade
@ -19,8 +19,8 @@
|
|||||||
# Gaming
|
# Gaming
|
||||||
../../modules/gaming
|
../../modules/gaming
|
||||||
|
|
||||||
# Stylix
|
# Ricing
|
||||||
../../modules/ricing/stylix
|
../../modules/ricing
|
||||||
|
|
||||||
# Home-manager
|
# Home-manager
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
@ -71,11 +71,7 @@
|
|||||||
LC_TIME = "en_US.UTF-8";
|
LC_TIME = "en_US.UTF-8";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.displayManager.sddm = {
|
services.xserver.displayManager.lightdm.enable = true;
|
||||||
enable = true;
|
|
||||||
package = pkgs.kdePackages.sddm;
|
|
||||||
wayland.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
|
|
||||||
|
|||||||
@ -6,8 +6,7 @@
|
|||||||
./terminal
|
./terminal
|
||||||
./gnome-extensions
|
./gnome-extensions
|
||||||
./vscode
|
./vscode
|
||||||
./ricing/hyprland
|
./ricing
|
||||||
./ricing/stylix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Allow Unfree
|
# Allow Unfree
|
||||||
|
|||||||
20
modules/home-manager/ricing/default.nix
Normal file
20
modules/home-manager/ricing/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./stylix
|
||||||
|
./hyprland
|
||||||
|
];
|
||||||
|
|
||||||
|
# GTK theming
|
||||||
|
gtk.enable = true;
|
||||||
|
|
||||||
|
gtk.iconTheme.package = pkgs.gruvbox-plus-icons;
|
||||||
|
gtk.iconTheme.name = "Gruvbox-Plus-Dark";
|
||||||
|
|
||||||
|
# Qt theming
|
||||||
|
qt.enable = true;
|
||||||
|
qt.platformTheme = "gtk";
|
||||||
|
qt.style.name = "adwaita-dark";
|
||||||
|
qt.style.package = pkgs.adwaita-qt;
|
||||||
|
}
|
||||||
12
modules/ricing/default.nix
Normal file
12
modules/ricing/default.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./stylix
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
libsForQt5.qt5.qtquickcontrols
|
||||||
|
libsForQt5.qt5.qtgraphicaleffects
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user