chore(flake.nix): format
This commit is contained in:
parent
96305f635e
commit
2063e04dc2
1 changed files with 18 additions and 16 deletions
34
flake.nix
34
flake.nix
|
@ -52,18 +52,19 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self
|
outputs =
|
||||||
, nixpkgs
|
{ self
|
||||||
, nix-on-droid
|
, nixpkgs
|
||||||
, nix-darwin
|
, nix-on-droid
|
||||||
, home-manager
|
, nix-darwin
|
||||||
# , hardware
|
, home-manager
|
||||||
# , nix-colors
|
# , hardware
|
||||||
, neovim-nightly-overlay
|
# , nix-colors
|
||||||
, zig-overlay
|
, neovim-nightly-overlay
|
||||||
, zls-overlay
|
, zig-overlay
|
||||||
, ...
|
, zls-overlay
|
||||||
} @ inputs:
|
, ...
|
||||||
|
} @ inputs:
|
||||||
let
|
let
|
||||||
inherit (self) outputs;
|
inherit (self) outputs;
|
||||||
forAllSystems = nixpkgs.lib.genAttrs [
|
forAllSystems = nixpkgs.lib.genAttrs [
|
||||||
|
@ -122,11 +123,12 @@
|
||||||
|
|
||||||
home-manager-path = home-manager.outPath;
|
home-manager-path = home-manager.outPath;
|
||||||
};
|
};
|
||||||
in rec {
|
in
|
||||||
cheetah = mkHost "aarch64-linux" "cheetah";
|
rec {
|
||||||
|
cheetah = mkHost "aarch64-linux" "cheetah";
|
||||||
|
|
||||||
default = cheetah;
|
default = cheetah;
|
||||||
};
|
};
|
||||||
|
|
||||||
darwinConfigurations =
|
darwinConfigurations =
|
||||||
let mkHost = system: hostname: users: nix-darwin.lib.darwinSystem {
|
let mkHost = system: hostname: users: nix-darwin.lib.darwinSystem {
|
||||||
|
|
Loading…
Reference in a new issue