14 lines
187 B
Nix
14 lines
187 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../common.nix
|
|
];
|
|
|
|
# User details
|
|
home.username = "martin";
|
|
home.homeDirectory = "/home/martin";
|
|
|
|
home.stateVersion = "25.11";
|
|
}
|