nix/hosts/desktop/home.nix

44 lines
1018 B
Nix
Raw Normal View History

2024-03-12 21:24:29 +01:00
{ pkgs, ... }:
{
imports = [
2024-06-20 12:56:01 +02:00
# ../../modules/home/desktop/hyprland
2024-03-26 19:50:08 +01:00
# ../../modules/home/programs/barrier.nix
2024-06-20 12:56:01 +02:00
# ../../modules/home/programs/common.nix
# ../../modules/home/programs/develop.nix
../../modules/home/programs/firefox.nix
# ../../modules/home/programs/modrinth.nix
# ../../modules/home/programs/neovim
2024-06-20 13:44:47 +02:00
../../modules/home/programs/git.nix
2024-06-20 12:56:01 +02:00
# ../../modules/home/programs/ssh.nix
# ../../modules/home/theme
# ../../modules/home/theme/blueish.nix
# ../../modules/home/utils/fonts.nix
2024-03-12 21:24:29 +01:00
];
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
home.packages = with pkgs; [
2024-06-20 12:56:01 +02:00
# Desktop Applications
# kdenlive
# gthumb
unstable.bitwarden
unstable.prismlauncher
# blender
2024-05-18 11:27:09 +02:00
2024-06-20 12:56:01 +02:00
# unstable.surrealist
2024-03-12 21:24:29 +01:00
];
2024-06-20 12:56:01 +02:00
# home.sessionVariables = {
# LIBVA_DRIVER_NAME = "nvidia";
# XDG_SESSION_TYPE = "wayland";
# __GLX_VENDOR_LIBRARY_NAME = "nvidia";
# WLR_NO_HARDWARE_CURSORS = 1;
# };
2024-03-14 21:36:28 +01:00
2024-06-02 12:10:28 +02:00
home.stateVersion = "24.05";
2024-03-12 21:24:29 +01:00
}