nix/hosts/desktop/home.nix

68 lines
1.4 KiB
Nix
Raw Normal View History

2024-08-09 11:45:19 +02:00
{ pkgs, lib, ... }:
2024-03-12 21:24:29 +01:00
{
imports = [
2024-12-28 16:59:34 +01:00
# Modules
../../modules/home/default.nix
2024-03-12 21:24:29 +01:00
];
2024-08-09 11:44:43 +02:00
options = {
host = lib.mkOption {
type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
2024-10-11 17:14:39 +02:00
headless = lib.mkOption {
type = with lib.types; bool;
description = ''
Is this machine headless?
'';
};
2024-03-12 21:24:29 +01:00
};
2024-08-09 11:44:43 +02:00
config = {
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
host = "xv-desktop";
2024-10-11 17:14:39 +02:00
headless = false;
2024-03-12 21:24:29 +01:00
2024-08-09 11:44:43 +02:00
home.packages = with pkgs; [
2024-11-30 18:30:01 +01:00
unstable.prismlauncher
unstable.vesktop
2025-01-02 09:35:55 +01:00
unstable.baobab
2024-08-09 11:44:43 +02:00
];
2024-11-30 18:30:01 +01:00
# Enable home-manager
programs.home-manager.enable = true;
2024-12-28 16:59:34 +01:00
settings = {
applications.common.enable = true;
applications.alacritty.enable = false;
applications.devenv.enable = true;
applications.firefox.enable = true;
applications.git.enable = true;
applications.helix.enable = true;
applications.zsh.enable = true;
applications.ssh.enable = true;
applications.thunderbird.enable = true;
applications.yazi.enable = true;
applications.zellij.enable = true;
services.nextcloud-sync.enable = true;
theming.fonts.enable = true;
theming.nix-colors.enable = false;
theming.stylix.enable = true;
desktop-environments.hyprland.enable = false;
};
2024-08-09 11:44:43 +02:00
home.stateVersion = "24.05";
};
2024-03-12 21:24:29 +01:00
}