nix/hosts/laptop/home.nix

34 lines
745 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ pkgs, ... }:
{
imports = [
../../modules/home/desktop/hyprland
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
../../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-16 20:49:22 +01:00
prismlauncher
2024-03-09 17:18:36 +01:00
];
home.stateVersion = "23.11";
}