diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-08-22 17:07:07 +0800 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-08-22 17:07:07 +0800 |
commit | bc64af1a17592160d3525aa577a55e7261c1875a (patch) | |
tree | e8208eaefd9198ab11369c45e7e92b795e4f1f36 /nixos | |
parent | 9fec340586e38607e26e48bb1fe95076e444a883 (diff) | |
download | nixos-configuration-bc64af1a17592160d3525aa577a55e7261c1875a.tar.gz nixos-configuration-bc64af1a17592160d3525aa577a55e7261c1875a.tar.bz2 nixos-configuration-bc64af1a17592160d3525aa577a55e7261c1875a.zip |
feat: enable stylix integration with home-manager
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/configuration.nix | 3 | ||||
-rw-r--r-- | nixos/stylix.nix | 6 |
2 files changed, 1 insertions, 8 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 9c673ad..2ef2d79 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -15,12 +15,11 @@ ./fonts.nix ./services/laptop.preset.nix ./hardware-configuration.nix - #./ags.nix - ./xdg.nix ]; environment.variables = { GDK_SCALE = config.displayScale; FLAKE = config.myConfigLocation; + GTK_IM_MODULE = lib.mkForce ""; }; security.pam.services.hyprlock = {}; i18n.inputMethod = { diff --git a/nixos/stylix.nix b/nixos/stylix.nix deleted file mode 100644 index 46cd59c..0000000 --- a/nixos/stylix.nix +++ /dev/null @@ -1,6 +0,0 @@ -{pkgs, ...}: { - stylix = { - base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-medium.yaml"; - stylix.image = ../home-manager/stvnliu/assets/gruvbox-wallpaper.png; - }; -} |