nixos-config/home/home.nix
2025-08-11 00:03:20 -06:00

49 lines
1.2 KiB
Nix
Executable File

{
inputs,
pkgs,
lib,
config,
...
}:
{
home.username = "xbazzi";
home.homeDirectory = "/home/xbazzi";
wayland.windowManager.hyprland.enable = true;
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-storm.yaml";
targets = {
btop.enable = true;
kitty.enable = true;
# kitty.enable = true;
};
};
programs.command-not-found.enable = false;
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
#".p10k.zsh".text = builtins.readFile ./.p10k.zsh;
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
};
home.stateVersion = "24.11"; # Please read the comment before changing.
}