mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
home: Fixed lack of existence check
This commit is contained in:
parent
c08eb94ca0
commit
c289a9b725
1 changed files with 2 additions and 1 deletions
3
home.nix
3
home.nix
|
|
@ -1,6 +1,7 @@
|
|||
{ pkgs, config, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./modules/home ./private/profile/home ];
|
||||
imports = [ ./modules/home ]
|
||||
++ lib.optional (builtins.pathExists (./private/profile/home)) (import ./private/profile/home);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue