nix/hosts/ti-clt-tbl01/home.nix

52 lines
1.1 KiB
Nix
Raw Normal View History

2024-12-24 14:55:11 +01:00
{ pkgs, lib, ... }:
{
imports = [
# Modules
../../modules/home/default.nix
];
config = {
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
settings = {
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 = false;
applications.thunderbird.enable = false;
applications.yazi.enable = true;
applications.zellij.enable = false;
services.nextcloud-sync.enable = true;
theming.fonts.enable = true;
2025-01-02 19:30:27 +01:00
theming.stylix.enable = true;
2025-01-09 22:52:28 +01:00
theming.stylix.wallpaper = "wallpaper-2.png";
theming.stylix.theme = "da-one-ocean";
2024-12-24 14:55:11 +01:00
desktop-environments.hyprland.enable = false;
};
home.packages = with pkgs; [
# Desktop Applications
unstable.rnote
# Office
libreoffice
];
# Enable home-manager
programs.home-manager.enable = true;
home.stateVersion = "24.05";
};
}