nix/hosts/laptop/home.nix

35 lines
785 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-05-21 10:58:33 +02: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-05-10 19:49:48 +02:00
unstable.prismlauncher
2024-06-02 12:13:15 +02:00
unstable.joplin-desktop
2024-03-09 17:18:36 +01:00
];
2024-06-02 12:10:28 +02:00
home.stateVersion = "24.05";
2024-03-09 17:18:36 +01:00
}