nix/hosts/laptop/home.nix
2024-06-02 12:10:28 +02:00

34 lines
757 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/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
];
home.stateVersion = "24.05";
}