14 lines
192 B
Nix
14 lines
192 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [];
|
||
|
|
||
|
home = {
|
||
|
username = "florian";
|
||
|
homeDirectory = "/home/florian";
|
||
|
|
||
|
stateVersion = "23.05";
|
||
|
};
|
||
|
|
||
|
programs.home-manager.enable = true;
|
||
|
}
|