nixos/home/default.nix

14 lines
192 B
Nix
Raw Normal View History

2023-08-20 00:48:31 +02:00
{ config, pkgs, ... }:
{
imports = [];
home = {
username = "florian";
homeDirectory = "/home/florian";
stateVersion = "23.05";
};
programs.home-manager.enable = true;
}