mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-05 09:14:17 -06:00
Compare commits
5 commits
a8215ed290
...
b9922f793d
Author | SHA1 | Date | |
---|---|---|---|
b9922f793d | |||
587cf1f0fe | |||
75473e4dcb | |||
93b3eea1ba | |||
b00ae7e672 |
2 changed files with 10 additions and 3 deletions
7
.github/actions/nix/action.yml
vendored
7
.github/actions/nix/action.yml
vendored
|
@ -5,8 +5,8 @@ inputs:
|
||||||
description: Extra nix.conf config
|
description: Extra nix.conf config
|
||||||
default: |
|
default: |
|
||||||
accept-flake-config = true
|
accept-flake-config = true
|
||||||
build-dir = /nix/var
|
|
||||||
experimental-features = pipe-operator
|
experimental-features = pipe-operator
|
||||||
|
build-dir = /nix/var
|
||||||
keep-derivations = true
|
keep-derivations = true
|
||||||
keep-outputs = true
|
keep-outputs = true
|
||||||
clean:
|
clean:
|
||||||
|
@ -37,3 +37,8 @@ runs:
|
||||||
run: |
|
run: |
|
||||||
nix profile install "nixpkgs#attic-client"
|
nix profile install "nixpkgs#attic-client"
|
||||||
attic login oizys https://attic.dayl.in "${{ inputs.attic_token}}"
|
attic login oizys https://attic.dayl.in "${{ inputs.attic_token}}"
|
||||||
|
|
||||||
|
- name: "Show Nix Info"
|
||||||
|
shell: bash
|
||||||
|
run: nix run "nixpkgs#nix-info" -- -m
|
||||||
|
|
||||||
|
|
|
@ -47,8 +47,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
ls completions/zsh
|
installShellCompletion \
|
||||||
installShellCompletion --cmd distrbox --zsh completions/zsh/_distrobox
|
--cmd distrbox \
|
||||||
|
--zsh completions/zsh/_distrobox \
|
||||||
|
--bash completions/bash/distrbox
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue