refactor: extract home configs

This commit is contained in:
Michael Mandl 2024-07-10 13:09:24 +02:00
parent 55af25ccb3
commit f6f01771ab
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
3 changed files with 39 additions and 38 deletions

View file

@ -1,41 +0,0 @@
{ pkgs, user, ... }:
{
home.username = user;
home.homeDirectory = "/home/${user}";
home.stateVersion = "24.05"; # Please read the comment before changing.
home.sessionVariables = {
EDITOR = "nvim";
};
programs.home-manager.enable = true;
home.packages = with pkgs; [
wsl-open
xdg-utils
];
imports = [
../bat.nix
../carapace.nix
../direnv.nix
../eza.nix
../fzf.nix
../git.nix
../gpg
../neovim
../picocom.nix
../podman.nix
../ripgrep.nix
../rsync.nix
../shell_aliases.nix
../starship.nix
../tree.nix
../zoxide.nix
../zsh.nix
./ssh.nix
./zsh.nix
];
}