13 lines
166 B
Nix
13 lines
166 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../common.nix
|
|
];
|
|
|
|
home.username = "martin";
|
|
home.homeDirectory = "/Users/martin";
|
|
|
|
home.stateVersion = "24.05";
|
|
}
|