nixos-config/flake.nix

129 lines
2.4 KiB
Nix
Raw Permalink Normal View History

2023-10-08 11:42:08 +02:00
{
description = "Materus hosts and user config";
inputs = {
nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable";
};
flake-utils = {
type = "github";
owner = "numtide";
repo = "flake-utils";
ref = "main";
};
base16 = {
type = "github";
owner = "SenchoPens";
repo = "base16.nix";
ref = "main";
};
devshell = {
type = "github";
owner = "numtide";
repo = "devshell";
ref = "main";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
2023-10-08 16:13:36 +02:00
home-manager = {
2023-10-08 11:42:08 +02:00
type = "github";
2023-10-08 16:13:36 +02:00
owner = "nix-community";
repo = "home-manager";
ref = "master";
inputs = {
nixpkgs.follows = "nixpkgs";
};
2023-10-08 11:42:08 +02:00
};
2023-10-27 12:35:07 +02:00
2023-10-08 16:13:36 +02:00
emacs-overlay = {
type = "github";
owner = "nix-community";
repo = "emacs-overlay";
ref = "master";
2023-10-08 11:42:08 +02:00
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
2023-10-08 11:42:08 +02:00
};
};
2023-10-27 12:35:07 +02:00
nixos-hardware = {
type = "github";
owner = "NixOS";
repo = "nixos-hardware";
ref = "master";
};
2023-10-08 16:17:46 +02:00
nixerus = {
type = "github";
owner = "materusPL";
repo = "Nixerus";
ref = "master";
inputs = {
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
};
2024-10-31 21:08:37 +01:00
nix-vscode-extensions = {
type = "github";
owner = "nix-community";
repo = "nix-vscode-extensions";
ref = "master";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
2024-02-23 01:23:18 +01:00
sops-nix = {
type = "github";
owner = "Mic92";
repo = "sops-nix";
ref = "master";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
git-agecrypt = {
type = "github";
owner = "vlaci";
repo = "git-agecrypt";
ref = "main";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
plasma-manager = {
type = "github";
owner = "nix-community";
repo = "plasma-manager";
ref = "trunk";
inputs = {
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
};
2023-10-08 16:13:36 +02:00
nur = {
type = "github";
owner = "nix-community";
repo = "NUR";
ref = "master";
};
2023-10-08 11:42:08 +02:00
};
outputs = inputs: inputs;
2023-10-08 11:42:08 +02:00
}