diff options
author | Franck Cuny <franck@fcuny.net> | 2024-02-23 08:49:10 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-03-04 08:36:45 -0800 |
commit | 0b7a643ec291d8bda1f91db3cc1e436d317e6e1e (patch) | |
tree | b221fcf66319c87ff5173281e52e4b74ed1bba70 | |
parent | chore: update flake (diff) | |
download | world-0b7a643ec291d8bda1f91db3cc1e436d317e6e1e.tar.gz |
nix libraries and modules will be under `nix/`
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 4 | ||||
-rw-r--r-- | nix/flake/devshell.nix (renamed from flake/devshell.nix) | 0 | ||||
-rw-r--r-- | nix/flake/hosts.nix (renamed from flake/hosts.nix) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix index 321b657..ab53de9 100644 --- a/flake.nix +++ b/flake.nix @@ -45,8 +45,8 @@ systems = [ "aarch64-darwin" "x86_64-linux" ]; imports = [ - ./flake/devshell.nix - ./flake/hosts.nix + ./nix/flake/devshell.nix + ./nix/flake/hosts.nix ]; }; } diff --git a/flake/devshell.nix b/nix/flake/devshell.nix index 79bb2f9..79bb2f9 100644 --- a/flake/devshell.nix +++ b/nix/flake/devshell.nix diff --git a/flake/hosts.nix b/nix/flake/hosts.nix index 7fc0612..e3d1fff 100644 --- a/flake/hosts.nix +++ b/nix/flake/hosts.nix @@ -23,7 +23,7 @@ in flake = mkMerge [ { darwinConfigurations = { - mba-fcuny = mkDarwinConfig "aarch64-darwin" ../hosts/mba; + mba-fcuny = mkDarwinConfig "aarch64-darwin" ../../hosts/mba; }; } ]; |