From: Preston Pan Date: Thu, 16 Jan 2025 14:35:51 +0000 (-0800) Subject: installer works again X-Git-Url: https://ret2pop.net/gitweb/monorepo.git?a=commitdiff_plain;h=6f86d8f277229c41a5d5f45e6a8e9dd36d4e16a8;p=monorepo.git installer works again --- diff --git a/nix/flake.nix b/nix/flake.nix index 6399947..12bec57 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -54,6 +54,7 @@ { nixpkgs.overlays = [ nur.overlays.default ]; } { home-manager.extraSpecialArgs = attrs; } + ./modules/sda-simple.nix ./systems/continuity/default.nix ]; }; 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; diff --git a/nix/systems/continuity/default.nix b/nix/systems/continuity/default.nix index 0c9c1e8..3a4043c 100644 --- a/nix/systems/continuity/default.nix +++ b/nix/systems/continuity/default.nix @@ -2,6 +2,5 @@ { imports = [ ../../modules/default.nix - ../../modules/sda-simple.nix ]; }