Modular, context-aware and aspect-oriented dendritic Nix configurations.
Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/
den.oeiuwq.com
configurations
den
dendritic
nix
aspect
oriented
1# This repo was generated with github:vic/flake-file#dendritic template.
2# Run `nix run .#write-flake` after changing any input.
3#
4# Inputs can be placed in any module, the best practice is to have them
5# as close as possible to their actual usage.
6# See: https://vic.github.io/dendrix/Dendritic.html#minimal-and-focused-flakenix
7#
8# For our template, we enable home-manager and nix-darwin by default, but
9# you are free to remove them if not being used by you.
10{ ... }:
11{
12
13 flake-file.inputs = {
14 home-manager = {
15 url = "github:nix-community/home-manager";
16 inputs.nixpkgs.follows = "nixpkgs";
17 };
18
19 darwin = {
20 url = "github:nix-darwin/nix-darwin";
21 inputs.nixpkgs.follows = "nixpkgs";
22 };
23
24 ## these stable inputs are for wsl
25 #nixpkgs-stable.url = "github:nixos/nixpkgs/release-25.05";
26 #home-manager-stable.url = "github:nix-community/home-manager/release-25.05";
27 #home-manager-stable.inputs.nixpkgs.follows = "nixpkgs-stable";
28
29 #nixos-wsl = {
30 # url = "github:nix-community/nixos-wsl";
31 # inputs.nixpkgs.follows = "nixpkgs-stable";
32 # inputs.flake-compat.follows = "";
33 #};
34
35 };
36
37}