1
0
Fork 0
dotfiles/flake.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

2021-12-06 22:35:29 +00:00
{
inputs = {
2022-07-30 16:18:04 +00:00
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
2021-12-06 22:35:29 +00:00
2022-02-03 22:35:52 +00:00
darwin = {
url = "github:lnl7/nix-darwin";
2022-07-30 16:18:04 +00:00
inputs.nixpkgs.follows = "nixpkgs";
2022-02-03 22:35:52 +00:00
};
2021-12-10 21:15:13 +00:00
home-manager = {
url = "github:nix-community/home-manager";
2022-07-30 16:18:04 +00:00
inputs.nixpkgs.follows = "nixpkgs";
2021-12-10 21:15:13 +00:00
};
2021-12-06 22:35:29 +00:00
2021-12-17 20:41:54 +00:00
neovim-nightly-overlay = {
url = "github:nix-community/neovim-nightly-overlay";
2022-07-30 16:18:04 +00:00
inputs.nixpkgs.follows = "nixpkgs";
2021-12-17 20:41:54 +00:00
};
2021-12-14 19:34:31 +00:00
2022-07-30 18:17:39 +00:00
arion = {
url = "github:hercules-ci/arion";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-02-13 23:12:21 +00:00
zig-overlay = {
2022-02-13 20:58:18 +00:00
url = "github:arqv/zig-overlay";
2022-07-30 16:18:04 +00:00
inputs.nixpkgs.follows = "nixpkgs";
2022-02-13 20:58:18 +00:00
};
2021-12-17 20:41:54 +00:00
nifoc-overlay = {
url = "github:nifoc/nix-overlay";
2022-07-30 16:18:04 +00:00
inputs.nixpkgs.follows = "nixpkgs";
2021-12-17 20:41:54 +00:00
};
2021-12-06 22:35:29 +00:00
};
2022-07-29 18:13:31 +00:00
outputs = inputs@{ self, ... }:
2022-02-03 22:35:52 +00:00
let
2022-07-29 18:13:31 +00:00
config-Styx = import ./system/flakes/Styx.nix {
2022-07-30 16:18:04 +00:00
inherit (inputs) nixpkgs;
2022-07-29 18:13:31 +00:00
inherit (inputs) home-manager;
inherit (inputs) darwin;
inherit inputs;
2022-02-03 22:35:52 +00:00
};
2022-07-30 16:18:04 +00:00
config-sail = import ./system/flakes/sail.nix {
inherit (inputs) nixpkgs;
2022-07-31 18:48:49 +00:00
inherit (inputs) home-manager;
2022-07-30 18:17:39 +00:00
inherit (inputs) arion;
2022-07-31 18:49:51 +00:00
inherit inputs;
2022-07-30 16:18:04 +00:00
};
2022-02-03 22:35:52 +00:00
in
2022-07-30 16:18:04 +00:00
config-Styx // config-sail;
2021-12-06 22:35:29 +00:00
}