minor adjustments
This commit is contained in:
parent
5f959fea9f
commit
d29a43028b
2 changed files with 3 additions and 7 deletions
|
@ -15,11 +15,11 @@ let
|
|||
|
||||
source = {
|
||||
secrets.file = "${secrets}/secrets";
|
||||
assets.file = toString ./assets;
|
||||
private_assets.pass = {
|
||||
dir = toString ~/.password-store;
|
||||
name = "krops/private_assets";
|
||||
};
|
||||
assets.file = toString ./assets;
|
||||
configs.file = toString ./configs;
|
||||
library.file = toString ./library;
|
||||
modules.file = toString ./modules;
|
||||
|
@ -63,16 +63,12 @@ let
|
|||
target = lib.mkTarget "root@${host}/etc/NetworkManager";
|
||||
};
|
||||
in {
|
||||
"${name}-all" = pkgs.writers.writeBashBin "${name}-all" ''
|
||||
"${name}" = pkgs.writers.writeBashBin "${name}-all" ''
|
||||
echo "deploy network secerts"
|
||||
${network}/bin/secrets
|
||||
echo "deploy system"
|
||||
${system}/bin/system
|
||||
'';
|
||||
"${name}" = pkgs.writers.writeBashBin name ''
|
||||
echo "deploy system"
|
||||
${system}/bin/system
|
||||
'';
|
||||
};
|
||||
|
||||
in (desktop {
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
|
||||
# rewire NIX_PATH
|
||||
# ---------------
|
||||
environment.variables.NIX_PATH = lib.mkForce "/var/src";
|
||||
# environment.variables.NIX_PATH = lib.mkForce "/var/src";
|
||||
|
||||
# Shell configuration
|
||||
# -------------------
|
||||
|
|
Loading…
Reference in a new issue