Some checks are pending
Continuous Integration / Checks (push) Waiting to run
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{
|
|
description = "dadada's nix flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11-small";
|
|
nixpkgs-full.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
flake-utils = {
|
|
url = "github:numtide/flake-utils";
|
|
inputs.systems.follows = "systems";
|
|
};
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-24.11";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
homepage = {
|
|
url = "https://git.dadada.li/dadada/dadada.li/archive/main.tar.gz";
|
|
flake = false;
|
|
};
|
|
agenix = {
|
|
url = "github:ryantm/agenix/0.15.0";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
devshell = {
|
|
url = "github:numtide/devshell";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
lix-module = {
|
|
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-2.tar.gz";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
nixos-generators = {
|
|
url = "github:nix-community/nixos-generators";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
flake-registry = {
|
|
url = "github:NixOS/flake-registry";
|
|
flake = false;
|
|
};
|
|
systems.url = "github:nix-systems/default";
|
|
treefmt-nix = {
|
|
url = "github:numtide/treefmt-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { ... } @ args: import ./outputs.nix args;
|
|
}
|