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
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix default fsTypes on templates

+10 -7
+1 -1
templates/default/flake.nix
··· 16 16 url = "github:nix-community/home-manager"; 17 17 }; 18 18 import-tree.url = "github:vic/import-tree"; 19 - nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; 19 + nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"; 20 20 nixpkgs-lib.follows = "nixpkgs"; 21 21 }; 22 22
+1
templates/default/modules/defaults.nix
··· 13 13 den.aspects.tux.nixos = { 14 14 boot.loader.grub.enable = false; 15 15 fileSystems."/".device = "/dev/fake"; 16 + fileSystems."/".fsType = "auto"; 16 17 }; 17 18 }
+1
templates/flake-parts-modules/modules/den.nix
··· 13 13 den.aspects.igloo = { 14 14 # User TODO: Remove for real host 15 15 nixos.fileSystems."/".device = "/dev/no-boot"; 16 + nixos.fileSystems."/".fsType = "auto"; 16 17 nixos.boot.loader.grub.enable = false; 17 18 }; 18 19
+6 -6
templates/microvm/flake.lock
··· 2 2 "nodes": { 3 3 "den": { 4 4 "locked": { 5 - "lastModified": 1776459378, 6 - "narHash": "sha256-ZyNKZpmRpnzaDEu7PhNkp0bEVZkGWw3vJQ+xQKyJgUM=", 5 + "lastModified": 1776451209, 6 + "narHash": "sha256-Kdb+ozQl+x1+dITuk91YHAunpD+tbOQmonE/jSVUlo4=", 7 7 "owner": "vic", 8 8 "repo": "den", 9 - "rev": "fed2e347cdc1e6d530dd6945b38602b3671abb46", 9 + "rev": "6bf070c84ea223873709ee7c1d00429cf9836267", 10 10 "type": "github" 11 11 }, 12 12 "original": { ··· 53 53 }, 54 54 "nixpkgs": { 55 55 "locked": { 56 - "lastModified": 1776255774, 57 - "narHash": "sha256-psVTpH6PK3q1htMJpmdz1hLF5pQgEshu7gQWgKO6t6Y=", 56 + "lastModified": 1772736753, 57 + "narHash": "sha256-au/m3+EuBLoSzWUCb64a/MZq6QUtOV8oC0D9tY2scPQ=", 58 58 "owner": "nixos", 59 59 "repo": "nixpkgs", 60 - "rev": "566acc07c54dc807f91625bb286cb9b321b5f42a", 60 + "rev": "917fec990948658ef1ccd07cef2a1ef060786846", 61 61 "type": "github" 62 62 }, 63 63 "original": {
+1
templates/minimal/modules/den.nix
··· 16 16 # USER TODO: remove this 17 17 boot.loader.grub.enable = false; 18 18 fileSystems."/".device = "/dev/null"; 19 + fileSystems."/".fsType = "auto"; 19 20 }; 20 21 }; 21 22