mirror of
https://github.com/youwen5/liminalOS.git
synced 2025-06-20 05:59:51 -07:00
refactor: massively overhaul home manager module system
This commit is contained in:
parent
b2270408fc
commit
a506d2aed4
64 changed files with 5201 additions and 64 deletions
14
hm/modules/linux/theming/default.nix
Normal file
14
hm/modules/linux/theming/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [ ./stylix.nix ];
|
||||
# gtk = {
|
||||
# enable = true;
|
||||
# cursorTheme = {
|
||||
# name = "Bibata-Modern-Ice";
|
||||
# size = 26;
|
||||
# };
|
||||
# iconTheme = {
|
||||
# name = "Papirus-Dark";
|
||||
# };
|
||||
# };
|
||||
}
|
13
hm/modules/linux/theming/stylix.nix
Normal file
13
hm/modules/linux/theming/stylix.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ osConfig, lib, ... }:
|
||||
{
|
||||
config.stylix.targets = lib.mkIf osConfig.liminalOS.theming.enable {
|
||||
waybar.enable = false;
|
||||
kitty.variant256Colors = true;
|
||||
neovim.enable = false;
|
||||
kde.enable = true;
|
||||
gnome.enable = true;
|
||||
swaync.enable = false;
|
||||
hyprlock.enable = false;
|
||||
hyprland.enable = false;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue