1
0
forked from extern/nix-config
donovanglover-nix-config/setup.nix

71 lines
1.4 KiB
Nix
Raw Normal View History

2023-06-22 18:37:32 +02:00
{ pkgs, ... }:
2023-06-13 00:09:57 +02:00
{
imports = [
./overlays
./modules/fish.nix
./modules/fonts.nix
./modules/home-manager.nix
./modules/locale.nix
./modules/neovim.nix
./modules/nix.nix
./modules/starship.nix
./modules/stylix.nix
./modules/timezone.nix
./modules/wine.nix
];
2023-06-22 18:51:54 +02:00
home-manager.sharedModules = [
./home/fish.nix
2023-06-22 18:51:54 +02:00
./home/gtk.nix
2023-06-23 00:33:10 +02:00
./home/htop.nix
./home/joshuto.nix
./home/kitty.nix
2023-06-22 18:51:54 +02:00
./home/xcursor.nix
./home/xresources.nix
];
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-06-24 03:11:30 +02:00
XCURSOR_SIZE = "24";
2023-07-11 03:56:25 +02:00
GTK_IM_MODULE = "fcitx";
QT_IM_MODULE = "fcitx";
XMODIFIERS = "@im=fcitx";
SDL_IM_MODULE = "fcitx";
GLFW_IM_MODULE = "ibus";
};
};
environment.systemPackages = with pkgs; [
kitty
];
users = {
mutableUsers = false;
allowNoPasswordLogin = true;
users = {
user = {
isNormalUser = true;
home = "/home/user";
};
};
};
2023-06-13 00:09:57 +02:00
services.xserver.enable = true;
hardware.opengl.enable = true;
system.stateVersion = "22.11";
2023-06-13 00:09:57 +02:00
}