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
|
|
|
config = {
|
|
|
|
home = {
|
|
|
|
username = "xeovalyte";
|
|
|
|
homeDirectory = "/home/xeovalyte";
|
|
|
|
};
|
|
|
|
|
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.stylix.enable = true;
|
2025-01-09 19:28:33 +01:00
|
|
|
theming.stylix.wallpaper = "wallpaper-2.png";
|
|
|
|
theming.stylix.theme = "da-one-ocean";
|
2024-12-28 16:59:34 +01:00
|
|
|
|
|
|
|
desktop-environments.hyprland.enable = false;
|
|
|
|
};
|
|
|
|
|
2025-01-09 19:28:33 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
unstable.prismlauncher
|
|
|
|
unstable.vesktop
|
|
|
|
unstable.rnote
|
|
|
|
|
|
|
|
# Office
|
|
|
|
libreoffice
|
|
|
|
];
|
|
|
|
|
|
|
|
# Enable home-manager
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
|
2024-08-09 11:44:43 +02:00
|
|
|
home.stateVersion = "24.05";
|
|
|
|
};
|
2024-03-12 21:24:29 +01:00
|
|
|
}
|