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

17 lines
482 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/other_apps_light.nix
./shared.nix
# dotfiles links
./dotfiles_apps.nix
];
home.pointerCursor.enable = true;
# désactivation de stylix pour des logiciels lourds comme inkscape
stylix.targets.gtksourceview.enable = false;
}