From c09d867f11c4649f3623ee56ebe74648af74ae65 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Sun, 2 Aug 2020 14:50:05 -0600 Subject: [PATCH] core: move into subdir --- profiles/{core.nix => core/default.nix} | 4 ++-- profiles/{develop/zsh => core}/starship.toml | 0 profiles/list.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename profiles/{core.nix => core/default.nix} (96%) rename profiles/{develop/zsh => core}/starship.toml (100%) diff --git a/profiles/core.nix b/profiles/core/default.nix similarity index 96% rename from profiles/core.nix rename to profiles/core/default.nix index 6b7fad71..0c4c957b 100644 --- a/profiles/core.nix +++ b/profiles/core/default.nix @@ -7,7 +7,7 @@ in nix.systemFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ]; - imports = [ ../local/locale.nix ]; + imports = [ ../../local/locale.nix ]; environment = { @@ -34,7 +34,7 @@ in shellInit = '' export STARSHIP_CONFIG=${ pkgs.writeText "starship.toml" - (fileContents ./develop/zsh/starship.toml) + (fileContents ./starship.toml) } ''; diff --git a/profiles/develop/zsh/starship.toml b/profiles/core/starship.toml similarity index 100% rename from profiles/develop/zsh/starship.toml rename to profiles/core/starship.toml diff --git a/profiles/list.nix b/profiles/list.nix index b210126a..a96f5ccf 100644 --- a/profiles/list.nix +++ b/profiles/list.nix @@ -1,5 +1,5 @@ [ - ./core.nix + ./core ./develop ./develop/kakoune ./develop/tmux