16 lines
382 B
Nix
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;
|
|
}
|