nixos/home/default.nix

15 lines
244 B
Nix
Raw Normal View History

2023-08-20 00:48:31 +02:00
{ config, pkgs, ... }:
{
home = {
username = "florian";
homeDirectory = "/home/florian";
2024-05-24 23:11:36 +02:00
stateVersion = "24.05";
2023-08-20 00:48:31 +02:00
};
programs.home-manager.enable = true;
2024-02-27 21:19:41 +01:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
2023-08-20 15:27:52 +02:00
}