nixos-config/home/afoucaultc/home.nix
2026-08-08 16:05:06 +02:00

16 lines
382 B
Nix

{ ... }:
{
home.username = "afoucaultc";
home.homeDirectory = "/home/afoucaultc";
home.stateVersion = "26.05";
imports = [
# fichier individuel dans packages = programs.xyz existant
# sinon, dans other_apps*
./packages/obs.nix
./packages/other_apps.nix
./shared.nix
# dotfiles links
./dotfiles_apps.nix
];
home.pointerCursor.enable = true;
}