Compare commits

..

7 commits
24.05 ... main

5 changed files with 15 additions and 16 deletions

View file

@ -6,7 +6,6 @@ in {
enable = mkEnableOption "Enable all the audio daemons";
};
config = mkIf cfg.enable {
sound.enable = true;
hardware.pulseaudio.enable = false;
services.pipewire = {
enable = true;

View file

@ -6,16 +6,13 @@ in {
enable = mkEnableOption "Enables fcitx5 input method engine and mozc en anthy methods";
};
config = mkIf cfg.enable {
i18n = {
inputMethod = {
enabled = "fcitx5";
fcitx5 = {
addons = with pkgs; [
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-anthy
];
};
};
};
};
}

View file

@ -33,6 +33,7 @@ in {
ubuntu_font_family
uiua386
vollkorn
work-sans
];
fontconfig = {
enable = true;
@ -57,8 +58,8 @@ in {
];
monospace = [
"Fira Code"
"JetBrains Mono"
"Iosevka"
"JetBrains Mono"
"IPAGothic"
"Baekmuk Dotum"
"Noto Color Emoji"

View file

@ -11,10 +11,9 @@ in {
};
config = {
hardware = {
opengl = {
graphics = {
enable = true;
driSupport = true;
driSupport32Bit = true;
enable32Bit = true;
};
nvidia = mkIf cfg.nvidia.enable {
package = config.boot.kernelPackages.nvidiaPackages.stable;

View file

@ -73,7 +73,10 @@ in {
autoRepeatInterval = 16;
windowManager = {
windowmaker.enable = true;
xmonad.enable = true;
xmonad = {
enable = true;
extraPackages = h: with h; [ xmonad-contrib ];
};
};
displayManager.lightdm = {
enable = cfg.lightdm.enable;