2023-10-08 11:42:08 +02:00
|
|
|
{
|
2025-05-18 08:49:34 +02:00
|
|
|
description = "MKK flake: NixOS and home manager configs";
|
2023-10-08 11:42:08 +02:00
|
|
|
inputs = {
|
|
|
|
nixpkgs = {
|
|
|
|
type = "github";
|
2024-03-11 16:19:31 +01:00
|
|
|
owner = "NixOS";
|
|
|
|
repo = "nixpkgs";
|
2023-10-08 11:42:08 +02:00
|
|
|
ref = "nixos-unstable";
|
|
|
|
};
|
2025-05-23 18:07:40 +02:00
|
|
|
|
2023-11-03 16:07:18 +01:00
|
|
|
nixpkgs-stable = {
|
|
|
|
type = "github";
|
|
|
|
owner = "NixOS";
|
|
|
|
repo = "nixpkgs";
|
2025-05-23 18:07:40 +02:00
|
|
|
ref = "nixos-25.05";
|
2023-11-03 16:07:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
hm-stable = {
|
|
|
|
type = "github";
|
|
|
|
owner = "nix-community";
|
|
|
|
repo = "home-manager";
|
2025-05-23 18:07:40 +02:00
|
|
|
ref = "release-25.05";
|
2023-11-03 16:07:18 +01:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs-stable";
|
|
|
|
};
|
2025-05-18 08:49:34 +02:00
|
|
|
|
|
|
|
config-unstable = {
|
|
|
|
url = "path:./nix/subflake";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config-stable = {
|
|
|
|
url = "path:./nix/subflake";
|
2023-10-27 14:01:54 +02:00
|
|
|
inputs = {
|
|
|
|
nixpkgs.follows = "nixpkgs-stable";
|
2023-11-03 16:07:18 +01:00
|
|
|
home-manager.follows = "hm-stable";
|
2023-10-27 14:01:54 +02:00
|
|
|
};
|
|
|
|
};
|
2023-10-08 11:42:08 +02:00
|
|
|
};
|
2025-05-18 08:49:34 +02:00
|
|
|
outputs = inputs: import (builtins.toString ./nix) { inherit inputs; configRootPath = (builtins.toString ./.); };
|
2023-10-08 11:42:08 +02:00
|
|
|
}
|