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(ci): Fix failing test (#436)

authored by

Victor Borja and committed by
GitHub
ed6904cc 2abd1ca6

+5 -3
+2
.github/workflows/test.yml
··· 11 11 concurrency: 12 12 group: ${{ github.workflow }}-${{ github.ref }} 13 13 cancel-in-progress: true 14 + env: 15 + NIX_PATH: "nixpkgs=https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz" 14 16 jobs: 15 17 non-draft: 16 18 runs-on: ubuntu-latest
+1 -1
templates/ci/modules/features/homes.nix
··· 104 104 configuredUserName = "tux"; 105 105 keyboard.model = "standalone"; 106 106 keyboard.layout = "enthium"; 107 - keyboard.variant = "tux@igloo"; 107 + keyboard.variant = "tux"; 108 108 keyboard.options = [ ]; 109 109 }; 110 110 }
+2 -2
templates/ci/modules/features/host-options.nix
··· 31 31 { den, config, ... }: 32 32 { 33 33 den.hosts.x86_64-linux.igloo = { 34 - aspect = "my-custom-aspect"; 34 + aspect = den.aspects.my-custom-aspect; 35 35 users.tux = { }; 36 36 }; 37 37 den.default.homeManager.home.stateVersion = "25.11"; ··· 47 47 { 48 48 den.hosts.x86_64-linux.igloo.users.tux = { }; 49 49 50 - expr = den.hosts.x86_64-linux.igloo.aspect; 50 + expr = den.hosts.x86_64-linux.igloo.name; 51 51 expected = "igloo"; 52 52 } 53 53 );