12 lines
152 B
Text
12 lines
152 B
Text
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.username = "tobias";
|
||
|
home.homeDirectory = "/home/tobias";
|
||
|
|
||
|
imports = [
|
||
|
./common.nix
|
||
|
./graphical.nix
|
||
|
];
|
||
|
}
|