mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
f9426b18c8
This doesn't seem to change anything nowadays with Hyprland so it should be okay to drop in 2024. Edit: This seems to get set with pointerCursor in home-manager which gets set by stylix, so it shouldn't matter either way. See:ff1c364654/modules/config/home-cursor.nix (L172-L175)
And:b36fb34a9c/stylix/hm/cursor.nix (L15)
46 lines
925 B
Nix
46 lines
925 B
Nix
{
|
|
imports = [
|
|
../modules/shell.nix
|
|
../modules/desktop.nix
|
|
../modules/system.nix
|
|
];
|
|
|
|
home-manager.sharedModules = [
|
|
../home/fish.nix
|
|
../home/git.nix
|
|
../home/gtk.nix
|
|
../home/kitty.nix
|
|
../home/neovim.nix
|
|
../home/xresources.nix
|
|
../home/yazi.nix
|
|
];
|
|
|
|
modules = {
|
|
desktop.container = true;
|
|
system.noRoot = true;
|
|
};
|
|
|
|
environment = {
|
|
variables = {
|
|
TERM = "xterm-kitty";
|
|
};
|
|
|
|
sessionVariables = {
|
|
WAYLAND_DISPLAY = "wayland-1";
|
|
QT_QPA_PLATFORM = "wayland";
|
|
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
|
SDL_VIDEODRIVER = "wayland";
|
|
CLUTTER_BACKEND = "wayland";
|
|
MOZ_ENABLE_WAYLAND = "1";
|
|
XDG_RUNTIME_DIR = "/run/user/1000";
|
|
DISPLAY = ":0";
|
|
QT_IM_MODULE = "fcitx";
|
|
XMODIFIERS = "@im=fcitx";
|
|
SDL_IM_MODULE = "fcitx";
|
|
GLFW_IM_MODULE = "ibus";
|
|
};
|
|
};
|
|
|
|
hardware.opengl.enable = true;
|
|
}
|