nix/hosts/laptop/home.nix
2024-03-26 19:50:08 +01:00

35 lines
804 B
Nix

{ pkgs, ... }:
{
imports = [
../../modules/home/desktop/hyprland
# ../../modules/home/programs/barrier.nix
../../modules/home/programs/common.nix
../../modules/home/programs/firefox.nix
../../modules/home/programs/git.nix
../../modules/home/programs/kitty.nix
# ../../modules/home/programs/modrinth.nix
../../modules/home/programs/neovim
../../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
moonlight-qt
unstable.prismlauncher-qt5
];
home.stateVersion = "23.11";
}