diff options
author | Linnnus <[email protected]> | 2024-12-22 10:58:36 +0000 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-12-27 09:07:52 +0100 |
commit | 3bf29c686274e19576aeb4f19510fa0702d2cb0c (patch) | |
tree | f14ab6d1983ac09514abf1ebe1a34ddd17ca6472 /shared | |
parent | a323c5058b31de63c2e88716b01bd41a38faa5ef (diff) |
Move shared nix{os,-darwin} config to shared/nixos-and-darwin
Diffstat (limited to 'shared')
-rw-r--r-- | shared/nixos-and-darwin/common-hm-settings/default.nix (renamed from shared/nixos/common-hm-settings/default.nix) | 4 | ||||
-rw-r--r-- | shared/nixos-and-darwin/common-nix-settings/default.nix (renamed from shared/nixos/common-nix-settings/default.nix) | 4 | ||||
-rw-r--r-- | shared/nixos-and-darwin/common-shell-settings/default.nix (renamed from shared/nixos/common-shell-settings/default.nix) | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/shared/nixos/common-hm-settings/default.nix b/shared/nixos-and-darwin/common-hm-settings/default.nix index 9262f51..4c02005 100644 --- a/shared/nixos/common-hm-settings/default.nix +++ b/shared/nixos-and-darwin/common-hm-settings/default.nix @@ -1,8 +1,8 @@ # This module sets common settings related to home-manager (HM). All hosts that # I directly interact with should include this module. # -# NOTE: Even though this lives under `shared/nixos` the configuration in here -# should also be compatible with nix-darwin!! +# NOTE: This lives under `shared/nixos-and-darwin`. The configuration in here +# should be compatible with both nixos and nix-darwin!! { flakeInputs, flakeOutputs, diff --git a/shared/nixos/common-nix-settings/default.nix b/shared/nixos-and-darwin/common-nix-settings/default.nix index 6a34cac..92e14f3 100644 --- a/shared/nixos/common-nix-settings/default.nix +++ b/shared/nixos-and-darwin/common-nix-settings/default.nix @@ -1,8 +1,8 @@ # This module sets common settings related to Nix such as enabling flakes and # using overlays everywhere.. # -# NOTE: Even though this lives under `shared/nixos` the configuration in here -# should also be compatible with nix-darwin!! +# NOTE: This lives under `shared/nixos-and-darwin`. The configuration in here +# should be compatible with both nixos and nix-darwin!! { pkgs, lib, diff --git a/shared/nixos/common-shell-settings/default.nix b/shared/nixos-and-darwin/common-shell-settings/default.nix index ec71861..982296d 100644 --- a/shared/nixos/common-shell-settings/default.nix +++ b/shared/nixos-and-darwin/common-shell-settings/default.nix @@ -1,8 +1,8 @@ # This module sets options to ensure a consistent Baseline Shell Experince™ # across the entire fleet. This includes e.g. common utilities and aliases. # -# NOTE: Even though this lives under `shared/nixos` the configuration in here -# should also be compatible with nix-darwin!! +# NOTE: This lives under `shared/nixos-and-darwin`. The configuration in here +# should be compatible with both nixos and nix-darwin!! {pkgs, ...}: { # Set ZSH as the shell. # https://nixos.wiki/wiki/Command_Shell#Changing_default_shelltrue |