Files
dot/hosts/work/nix/home.nix
2026-02-11 08:03:13 +01:00

20 lines
240 B
Nix

{ config, pkgs, ... }:
{
imports = [
../common.nix
];
home.username = "pan";
home.homeDirectory = "/home/pan";
home.packages = with pkgs; [
nix-ld
];
home.stateVersion = "23.11";
dot.sh.sourceProfile = true;
}