nix-config/containers/default.nix
Donovan Glover 5e5d7c0468
containers: Fix cursor by inheriting overlays
Previously the old phinger-cursors package was being used without the
overlay. This fixes that and ensures that all packages have their
appropriate overlays.
2024-06-02 23:41:51 -04:00

53 lines
1.0 KiB
Nix

{ nix-config, ... }:
let
inherit (builtins) attrValues;
in
{
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
];
nixpkgs.overlays = attrValues nix-config.overlays;
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;
}