Files
amazing-dotfiles/home.nix
2026-02-20 13:51:43 +01:00

62 lines
1.6 KiB
Nix

{ config, pkgs, ... }:
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "szymon";
home.homeDirectory = "/home/szymon";
nix = {
package = pkgs.nix;
settings.experimental-features = [
"nix-command"
"flakes"
];
};
imports = [
./modules/packages.nix
./modules/fish.nix
./modules/yazi.nix
./modules/btop.nix
./modules/atuin.nix
./modules/zoxide.nix
./modules/mako.nix
./modules/ssh.nix
./modules/bat.nix
];
home.stateVersion = "25.11"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your
# environment.
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
".config/ashell/config.toml".source = ./dotfiles/ashell/config.toml;
".config/fastfetch".source = ./dotfiles/fastfetch;
".config/kitty".source = ./dotfiles/kitty;
".config/MangoHud".source = ./dotfiles/mangohud;
".config/nvim".source = ./dotfiles/nvim;
".config/gtk-3.0/settings.ini".source = ./dotfiles/gtk-3.0/settings.ini;
".config/gtk-4.0".source = ./dotfiles/gtk-4.0;
".config/satty".source = ./dotfiles/satty;
".config/waybar".source = ./dotfiles/waybar;
".config/hypr".source = ./dotfiles/hypr;
".local/bin".source = ./scripts;
};
home.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
home.sessionPath = [
"/home/szymon/.lmstudio/bin"
];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}