20 lines
240 B
Nix
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;
|
|
|
|
}
|