nix/hosts/desktop/home.nix

40 lines
918 B
Nix
Raw Normal View History

2024-03-12 21:24:29 +01:00
{ pkgs, ... }:
{
imports = [
2024-03-14 21:36:28 +01:00
../../modules/home/desktop/hyprland
2024-03-12 21:24:29 +01:00
../../modules/home/programs/common.nix
../../modules/home/programs/firefox.nix
../../modules/home/programs/kitty.nix
2024-03-14 14:07:24 +01:00
../../modules/home/programs/modrinth.nix
2024-03-12 21:24:29 +01:00
../../modules/home/programs/neovim
../../modules/home/programs/git.nix
../../modules/home/programs/ssh.nix
../../modules/home/theme
../../modules/home/theme/blueish.nix
../../modules/home/utils/fonts.nix
];
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
home.packages = with pkgs; [
# Desktop Applications
kdenlive
gthumb
unstable.arduino-ide
2024-03-23 09:30:13 +01:00
unstable.prismlauncher-qt5
2024-03-12 21:24:29 +01:00
];
2024-03-14 21:36:28 +01:00
home.sessionVariables = {
LIBVA_DRIVER_NAME = "nvidia";
XDG_SESSION_TYPE = "wayland";
__GLX_VENDOR_LIBRARY_NAME = "nvidia";
WLR_NO_HARDWARE_CURSORS = 1;
};
2024-03-12 21:24:29 +01:00
home.stateVersion = "23.11";
}