nixos/modules/home/default.nix

21 lines
301 B
Nix
Raw Normal View History

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