home-manager/horsch.nix

24 lines
367 B
Nix
Raw Normal View History

2024-07-10 06:17:30 +00:00
{ pkgs, user, ... }:
2024-07-10 06:10:56 +00:00
{
2024-07-10 06:17:30 +00:00
home.username = user;
home.homeDirectory = "/home/${user}";
2024-07-10 06:10:56 +00:00
home.stateVersion = "24.05"; # Please read the comment before changing.
programs.home-manager.enable = true;
home.packages = with pkgs; [
wsl-open
xdg-utils
];
imports = [
2024-07-10 11:09:24 +00:00
./picocom.nix
./podman.nix
./horsch/ssh.nix
./horsch/zsh.nix
2024-07-10 06:10:56 +00:00
];
}