Files
dot/nix/hosts/work/nix/home.nix
2026-02-07 14:23:51 +01:00

22 lines
274 B
Nix

{ config, pkgs, ... }:
{
imports = [
../common.nix
];
home.username = "pan";
home.homeDirectory = "/home/pan";
home.packages = with pkgs; [
nix-ld
];
home.stateVersion = "23.11";
programs.zsh.profileExtra = ''
source $HOME/.profile
'';
}