nix-config/containers/shared.nix

45 lines
929 B
Nix
Raw Normal View History

2023-06-13 00:09:57 +02:00
{
imports = [
../modules/shell.nix
../modules/desktop.nix
../modules/system.nix
];
2023-06-22 18:51:54 +02:00
home-manager.sharedModules = [
../home/fish.nix
../home/git.nix
../home/gtk.nix
../home/kitty.nix
../home/neovim.nix
../home/xcursor.nix
../home/xresources.nix
../home/yazi.nix
2023-06-22 18:51:54 +02:00
];
modules = {
system.noRoot = true;
};
environment = {
defaultPackages = [ ];
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.opengl.enable = true;
2023-06-13 00:09:57 +02:00
}