home-manager/horsch.nix

31 lines
466 B
Nix

{ pkgs, user, ... }:
{
home.username = user;
home.homeDirectory = "/home/${user}";
home.stateVersion = "24.05"; # Please read the comment before changing.
programs.home-manager.enable = true;
home.sessionPath = [
"$HOME/.local/bin"
];
home.packages = with pkgs; [
wsl-open
xdg-utils
];
imports = [
./picocom.nix
./podman.nix
./horsch/ssh.nix
./horsch/zsh.nix
./horsch/github.nix
./horsch/qemu.nix
];
}