2024-03-09 17:18:36 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2024-06-20 13:41:57 +02:00
|
|
|
# GUI
|
|
|
|
../../modules/home/gui/common
|
|
|
|
../../modules/home/gui/hyprland
|
|
|
|
../../modules/home/gui/nextcloud.nix
|
|
|
|
../../modules/home/gui/theming.nix
|
|
|
|
|
|
|
|
# CLI
|
|
|
|
../../modules/home/cli/common
|
|
|
|
../../modules/home/cli/ssh.nix
|
2024-03-09 17:18:36 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
home = {
|
|
|
|
username = "xeovalyte";
|
|
|
|
homeDirectory = "/home/xeovalyte";
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
# Desktop Applications
|
2024-03-12 17:31:56 +01:00
|
|
|
kdenlive
|
2024-05-10 19:49:48 +02:00
|
|
|
unstable.prismlauncher
|
2024-06-02 12:13:15 +02:00
|
|
|
unstable.joplin-desktop
|
2024-06-17 11:49:58 +02:00
|
|
|
unstable.moonlight-qt
|
2024-06-18 11:22:58 +02:00
|
|
|
unstable.prusa-slicer
|
2024-06-20 13:41:57 +02:00
|
|
|
signal-desktop
|
|
|
|
unstable.vesktop
|
|
|
|
|
|
|
|
# Office
|
|
|
|
libreoffice
|
|
|
|
onlyoffice-bin
|
|
|
|
|
|
|
|
# Image editing
|
|
|
|
gimp
|
|
|
|
inkscape
|
|
|
|
|
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
|
|
|
}
|