nixos/home/default.nix

14 lines
244 B
Nix

{ config, pkgs, ... }:
{
home = {
username = "florian";
homeDirectory = "/home/florian";
stateVersion = "24.05";
};
programs.home-manager.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}