nixos/modules/home/default.nix
Florian RICHER a1aa8f0b25
All checks were successful
check / check (push) Successful in 33s
Refactor nix experimental-features to use on home and system side
2024-08-15 22:00:29 +02:00

20 lines
252 B
Nix

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