2024-07-10 08:17:30 +02:00
|
|
|
{ pkgs, user, ... }:
|
2024-07-10 08:10:56 +02:00
|
|
|
|
|
|
|
{
|
2024-07-10 08:17:30 +02:00
|
|
|
home.username = user;
|
|
|
|
home.homeDirectory = "/home/${user}";
|
2024-07-10 08:10:56 +02:00
|
|
|
|
|
|
|
home.stateVersion = "24.05"; # Please read the comment before changing.
|
|
|
|
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
|
2024-09-16 09:14:06 +02:00
|
|
|
home.sessionPath = [
|
|
|
|
"$HOME/.local/bin"
|
|
|
|
];
|
|
|
|
|
2024-07-10 08:10:56 +02:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
wsl-open
|
|
|
|
xdg-utils
|
|
|
|
];
|
|
|
|
|
|
|
|
imports = [
|
2024-07-10 13:09:24 +02:00
|
|
|
./podman.nix
|
|
|
|
|
2024-10-24 08:28:41 +02:00
|
|
|
./shell/screen.nix
|
|
|
|
|
2024-07-10 13:09:24 +02:00
|
|
|
./horsch/ssh.nix
|
|
|
|
./horsch/zsh.nix
|
2024-07-31 07:37:52 +02:00
|
|
|
./horsch/github.nix
|
2024-07-30 08:04:30 +02:00
|
|
|
|
|
|
|
./horsch/qemu.nix
|
2024-07-10 08:10:56 +02:00
|
|
|
];
|
|
|
|
}
|