nixos/modules/home/default.nix

21 lines
301 B
Nix
Raw Normal View History

2024-05-27 22:23:32 +02:00
{ config, pkgs, ... }:
2024-05-25 23:51:37 +02:00
{
2024-05-27 22:23:32 +02:00
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" ];
2024-05-26 01:10:42 +02:00
}