flake/home/home.nix
2025-04-28 19:35:13 +03:00

32 lines
440 B
Nix

{
config,
pkgs,
...
}: {
imports = [
./alacritty.nix
./tmux
./git.nix
./gtk.nix
./ssh.nix
./bash.nix
./direnv.nix
./firefox.nix
./fish.nix
./tlrc.nix
./starship.nix
./zoxide.nix
];
home.username = "osbm";
home.homeDirectory = "/home/osbm";
home.packages = [
pkgs.lazygit
];
home.stateVersion = config.system.stateVersion;
programs.home-manager.enable = true;
}