nix/hosts/ch-clt-dsk01/home.nix

69 lines
1.4 KiB
Nix
Raw Normal View History

2025-01-09 15:59:10 +01:00
{ pkgs, lib, ... }:
{
imports = [
# Modules
../../modules/home/default.nix
];
config = {
home = {
username = "kiiwy";
homeDirectory = "/home/kiiwy";
};
settings = {
2025-01-09 17:14:10 +01:00
hostname = "ch-clt-dsk01";
2025-01-09 15:59:10 +01:00
applications.common.enable = true;
applications.alacritty.enable = false;
applications.devenv.enable = false;
applications.firefox.enable = true;
applications.git.enable = true;
applications.helix.enable = true;
applications.zsh.enable = true;
applications.ssh.enable = true;
applications.thunderbird.enable = false;
applications.yazi.enable = false;
applications.zellij.enable = false;
services.nextcloud-sync.enable = false;
theming.fonts.enable = true;
theming.nix-colors.enable = false;
theming.stylix.enable = true;
2025-01-09 17:16:21 +01:00
theming.stylix.wallpaper = "kiiwy.png";
2025-01-09 17:14:10 +01:00
theming.stylix.theme = "theme";
2025-01-09 15:59:10 +01:00
desktop-environments.hyprland.enable = false;
};
home.packages = with pkgs; [
# Desktop Applications
prismlauncher
signal-desktop
unstable.vesktop
blender
2025-01-09 17:14:10 +01:00
brave
2025-01-09 15:59:10 +01:00
# Office
libreoffice
];
# Enable home-manager
programs.home-manager.enable = true;
home.stateVersion = "24.05";
};
2025-01-09 17:14:10 +01:00
options = {
settings.hostname = lib.mkOption {
type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
};
2025-01-09 15:59:10 +01:00
}