nix/hosts/laptop/home.nix

65 lines
1.1 KiB
Nix
Raw Normal View History

2024-06-25 13:11:30 +02:00
{ pkgs, lib, config, ... }:
2024-03-09 17:18:36 +01:00
{
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
2024-08-01 12:44:07 +02:00
../../modules/home/gui/thunderbird.nix
2024-06-20 13:41:57 +02:00
# CLI
../../modules/home/cli/common
../../modules/home/cli/develop.nix
2024-06-20 13:41:57 +02:00
../../modules/home/cli/ssh.nix
2024-03-09 17:18:36 +01:00
];
2024-06-25 13:11:30 +02:00
options = {
host = lib.mkOption {
type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
2024-03-09 17:18:36 +01:00
};
2024-06-25 13:11:30 +02:00
config = {
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
2024-06-20 13:41:57 +02:00
2024-06-25 13:11:30 +02:00
host = "xv-laptop";
2024-06-20 13:41:57 +02:00
2024-06-25 13:11:30 +02:00
home.packages = with pkgs; [
# Desktop Applications
kdenlive
unstable.prismlauncher
unstable.joplin-desktop
unstable.moonlight-qt
unstable.prusa-slicer
signal-desktop
unstable.vesktop
2024-08-01 12:44:07 +02:00
unstable.rnote
unstable.blender
2024-06-25 13:11:30 +02:00
# Office
libreoffice
onlyoffice-bin
# Image editing
gimp
inkscape
2024-08-01 12:44:07 +02:00
unstable.obs-studio
2024-06-25 13:11:30 +02:00
# Development
unstable.drawio
2024-06-25 13:11:30 +02:00
];
home.stateVersion = "24.05";
};
2024-03-09 17:18:36 +01:00
}