22 lines
274 B
Nix
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
|
|
'';
|
|
|
|
}
|