diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-01-16 06:35:51 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-01-16 06:35:51 -0800 |
commit | 6f86d8f277229c41a5d5f45e6a8e9dd36d4e16a8 (patch) | |
tree | f4c6bc80158037cdd2f02a2bfb0fa3fd64e3f586 /nix/modules | |
parent | 13cc00d0c3e30154e118c5053ad6610b607b568f (diff) |
installer works again
Diffstat (limited to 'nix/modules')
-rw-r--r-- | nix/modules/home/user.nix | 3 | ||||
-rw-r--r-- | nix/modules/kubo.nix | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/nix/modules/home/user.nix b/nix/modules/home/user.nix index 24c358f..92be80a 100644 --- a/nix/modules/home/user.nix +++ b/nix/modules/home/user.nix @@ -8,6 +8,9 @@ if [ ! -d "/home/${config.monorepo.vars.userName}/music" ]; then mkdir -p /home/${config.monorepo.vars.userName}/music fi + if [ ! -d /home/${config.monorepo.vars.userName}/org ]; then + mkdir -p /home/${config.monorepo.vars.userName}/org + fi touch /home/${config.monorepo.vars.userName}/org/agenda.org touch /home/${config.monorepo.vars.userName}/org/notes.org ''; diff --git a/nix/modules/kubo.nix b/nix/modules/kubo.nix index 5d2c89a..92dab0e 100644 --- a/nix/modules/kubo.nix +++ b/nix/modules/kubo.nix @@ -1,4 +1,4 @@ -{}: +{ config, pkgs, ... }: { services.kubo = { enable = true; |