configuration.nix/flake.nix

32 lines
907 B
Nix
Raw Normal View History

2023-08-07 10:19:48 +02:00
{
inputs = {
2024-06-24 22:51:55 +02:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2023-08-07 10:19:48 +02:00
home-manager = {
2024-06-24 22:51:55 +02:00
url = "github:nix-community/home-manager";
2023-08-07 10:19:48 +02:00
inputs.nixpkgs.follows = "nixpkgs";
};
parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
2023-11-01 19:02:35 +01:00
hosts = {
url = "github:StevenBlack/hosts";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-18 07:42:50 +01:00
ide = {
2023-11-18 07:49:05 +01:00
url = "github:ivandimitrov8080/flake-ide";
2023-11-18 07:42:50 +01:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-06-21 19:54:47 +02:00
sal = {
url = "github:ivandimitrov8080/sal";
inputs = { nixpkgs.follows = "nixpkgs"; ide.follows = "ide"; };
};
2024-01-07 12:33:29 +01:00
nid = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-05-06 23:21:25 +02:00
catppuccin.url = "github:catppuccin/nix";
2023-08-07 10:19:48 +02:00
};
outputs = inputs: inputs.parts.lib.mkFlake { inherit inputs; } { imports = [ ./. ]; };
2023-08-07 10:19:48 +02:00
}