11 lines
223 B
Nix
11 lines
223 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home = {
|
|
username = "user";
|
|
homeDirectory = "/home/user";
|
|
stateVersion = "22.05";
|
|
sessionVariables = { EDITOR = "hx"; };
|
|
packages = with pkgs; [ nix-your-shell ];
|
|
};
|
|
}
|