diff options
author | Leonardo Santiago <[email protected]> | 2025-07-25 11:28:55 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2025-07-25 11:28:55 -0300 |
commit | 31b1de18850e894b4235e1578daf67f3b659bee1 (patch) | |
tree | 470c44a36cc2f7e1f47b74af0570eb53a891a47c | |
parent | 5c43fb26fd460918bc2e054f19bf77984126f4c7 (diff) |
fix: typo
-rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -30,6 +30,7 @@ for-all-systems = f: nixpkgs.lib.genAttrs [ "x86_64-linux" + "arrch64-linux" "aarch64-darwin" ] (system: f (import nixpkgs { overlays = [ inputs.emacs-overlay.overlays.default ]; @@ -49,7 +50,7 @@ in rec { nixosConfigurations = listToAttrs nixos-configs; packages = for-all-systems (pkgs: { - emacs = pkgs.callPackage ./modules/emacs/package.nix; + emacs = pkgs.callPackage ./modules/emacs/package.nix {}; }); deploy.nodes.iori = { hostname = "ssh.santi.net.br"; |