diff options
author | sefidel <contact@sefidel.net> | 2023-02-15 01:16:40 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-02-15 01:16:40 +0900 |
commit | dabd03092c988d911e51bba10eeaee4bf2e01e5f (patch) | |
tree | 06f72f355264d681828ce47c4c8ead5f2121ffcd | |
parent | f699d07c3050d6edf8fc041f62e6eb120340c7cc (diff) | |
download | nixrc-dabd03092c988d911e51bba10eeaee4bf2e01e5f.tar.gz nixrc-dabd03092c988d911e51bba10eeaee4bf2e01e5f.zip |
fix(home/kompakt): set nixpkgs architecture to aarch64-darwin
-rw-r--r-- | home/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/default.nix b/home/default.nix index 7dfa382..c264ac2 100644 --- a/home/default.nix +++ b/home/default.nix @@ -24,7 +24,7 @@ "sefidel@kompakt" = self.lib.mkHome { username = "sefidel"; hostname = "kompakt"; - pkgs = import unstable { system = "aarch64-darwin"; overlays = with inputs; [ rust.overlays.default /*neovim.overlay*/ ]; }; + pkgs = import unstable { system = "aarch64-linux"; overlays = with inputs; [ rust.overlays.default /*neovim.overlay*/ ]; }; extraModules = [ ./profiles/populate.nix |