Maybe this?

This commit is contained in:
Patrick Menking 2024-09-17 14:44:32 -04:00
parent 333417627f
commit cc62487902
2 changed files with 3 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{inputs, pkgs, ...}: let
{config, inputs, pkgs, ...}: let
username = "crow";
homeDirectory = "/home/${username}";
configHome = "${homeDirectory}/.config";

View file

@ -1,9 +1,8 @@
{ config, ... }: {
imports = [
imports =
(
if config.users.crow.home.enable then
./crow/home.nix
[./crow/home.nix] else []
);
# ++ ( to add more, just move the ;
];
}