nix-config/containers/default.nix

50 lines
942 B
Nix
Raw Normal View History

{ nix-config, ... }:
2023-06-13 00:09:57 +02:00
{
imports = with nix-config.nixosModules; [
shell
desktop
system
];
home-manager.sharedModules = with nix-config.homeModules; [
fish
git
gtk
kitty
neovim
xresources
yazi
];
2023-06-22 18:51:54 +02:00
nixpkgs.overlays = builtins.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";
2023-07-11 03:56:25 +02:00
QT_IM_MODULE = "fcitx";
XMODIFIERS = "@im=fcitx";
SDL_IM_MODULE = "fcitx";
GLFW_IM_MODULE = "ibus";
};
};
hardware.graphics.enable = true;
2023-06-13 00:09:57 +02:00
}