1
0
forked from extern/nix-config

meta: Add hyprland-specific setup to hyprland module

This commit is contained in:
Donovan Glover 2023-06-17 09:42:47 -04:00
parent 0e6ed0aa93
commit f9a851cda2
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 5 additions and 5 deletions

View File

@ -3,6 +3,11 @@
{
programs.hyprland.enable = true;
i18n.inputMethod.enabled = "fcitx5";
i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ];
security.pam.services.swaylock = { };
services.udisks2 = {
enable = true;
mountOnMedia = true;

View File

@ -26,11 +26,6 @@ let VARIABLES = import ./variables.nix; in {
i18n.defaultLocale = VARIABLES.defaultLocale;
i18n.supportedLocales = VARIABLES.supportedLocales;
i18n.inputMethod.enabled = "fcitx5";
i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ];
security.pam.services.swaylock = { };
# nix
nix.package = pkgs.nixFlakes;
nix.settings.experimental-features = [ "nix-command" "flakes" "repl-flake" ];