Add nil
parent
736aca62e8
commit
e11c455279
|
@ -26,6 +26,11 @@
|
||||||
home-manager-atemu.url = "github:Atemu/home-manager/darwin-copy-apps-fully-wip";
|
home-manager-atemu.url = "github:Atemu/home-manager/darwin-copy-apps-fully-wip";
|
||||||
home-manager-atemu.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
home-manager-atemu.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
|
||||||
|
# Nix language server
|
||||||
|
nil.url = "github:oxalica/nil";
|
||||||
|
nil.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
nil.inputs.flake-utils.follows = "flake-utils";
|
||||||
|
|
||||||
# Extra sources
|
# Extra sources
|
||||||
helix.url = "github:helix-editor/helix";
|
helix.url = "github:helix-editor/helix";
|
||||||
helix.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
helix.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
@ -254,6 +259,8 @@
|
||||||
inherit (inputs) kitty-icon fisher-src;
|
inherit (inputs) kitty-icon fisher-src;
|
||||||
lib = prev.lib // { homebrew-enabled = inputs.homebrew-enabled.value; };
|
lib = prev.lib // { homebrew-enabled = inputs.homebrew-enabled.value; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nil = inputs.nil.overlays.default;
|
||||||
};
|
};
|
||||||
|
|
||||||
# `nix-darwin` configs and modules
|
# `nix-darwin` configs and modules
|
||||||
|
|
|
@ -116,10 +116,11 @@ in
|
||||||
|
|
||||||
# Useful nix related tools
|
# Useful nix related tools
|
||||||
cachix # adding/managing alternative binary caches hosted by Cachix
|
cachix # adding/managing alternative binary caches hosted by Cachix
|
||||||
comma # run software from without installing it
|
comma # run software from nixpkgs without installing it
|
||||||
nixpkgs-fmt
|
nixpkgs-fmt
|
||||||
nix-prefetch-git
|
nix-prefetch-git
|
||||||
nix-tree
|
nix-tree
|
||||||
|
nil # nix language server
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
m-cli # useful macOS CLI commands
|
m-cli # useful macOS CLI commands
|
||||||
is-dark-mode # see /overlays/colors.nix
|
is-dark-mode # see /overlays/colors.nix
|
||||||
|
|
Loading…
Reference in New Issue