mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 09:43:11 +01:00
8f61088347
Long-term this should allow for lighter containers and possibly decrease evaluation time.
47 lines
887 B
Nix
47 lines
887 B
Nix
{ nix-config, ... }:
|
|
|
|
{
|
|
imports = with nix-config.nixosModules; [
|
|
shell
|
|
desktop
|
|
system
|
|
stylix
|
|
fonts
|
|
];
|
|
|
|
home-manager.sharedModules = with nix-config.homeModules; [
|
|
fish
|
|
git
|
|
gtk
|
|
kitty
|
|
neovim
|
|
xresources
|
|
yazi
|
|
];
|
|
|
|
nixpkgs.overlays = builtins.attrValues nix-config.overlays;
|
|
|
|
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.graphics.enable = true;
|
|
}
|