nix/hosts/laptop/home.nix

35 lines
804 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ pkgs, ... }:
{
imports = [
../../modules/home/desktop/hyprland
2024-03-26 19:50:08 +01:00
# ../../modules/home/programs/barrier.nix
2024-03-09 17:18:36 +01:00
../../modules/home/programs/common.nix
../../modules/home/programs/firefox.nix
../../modules/home/programs/git.nix
2024-03-09 17:18:36 +01:00
../../modules/home/programs/kitty.nix
2024-03-23 10:12:06 +01:00
# ../../modules/home/programs/modrinth.nix
2024-03-09 17:18:36 +01:00
../../modules/home/programs/neovim
2024-03-12 17:31:56 +01:00
../../modules/home/programs/ssh.nix
2024-03-09 17:18:36 +01:00
../../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
2024-03-12 17:31:56 +01:00
kdenlive
gthumb
unstable.arduino-ide
moonlight-qt
2024-03-23 09:30:13 +01:00
unstable.prismlauncher-qt5
2024-03-09 17:18:36 +01:00
];
home.stateVersion = "23.11";
}