Merge branch 'main' of github.com:JulienMalka/nix-config

This commit is contained in:
Luj 2023-11-21 11:16:08 +01:00
commit 23daeb4cca
Signed by: luj
GPG key ID: 6FC74C847011FD83
12 changed files with 716 additions and 210 deletions

View file

@ -14,7 +14,7 @@ with lib;
lib.mapAttrs
(name: value:
{
imports = with builtins; (map (x: ../../home-manager-modules + "/${x}/default.nix") (attrNames (readDir ../../home-manager-modules)));
imports = with builtins; (map (x: ../../home-manager-modules + "/${x}/default.nix") (attrNames (readDir ../../home-manager-modules))) ++ [ inputs.nix-doom-emacs.hmModule ];
home.username = "${name}";
home.homeDirectory = "/home/${name}";
home.stateVersion = "21.05";