mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 12:10:45 +02:00
59 lines
1.5 KiB
Nix
59 lines
1.5 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
|
|
];
|
|
|
|
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;
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
VISUAL = "nvim";
|
|
};
|
|
|
|
home.sessionPath = [
|
|
"/home/szymon/.lmstudio/bin"
|
|
];
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
}
|