refactor: move astal shell to its own repo

This commit is contained in:
Nickolaj Jepsen 2025-02-24 22:20:16 +01:00
parent 1bd1fdb9cf
commit 15250041b6
68 changed files with 135 additions and 8285 deletions

View file

@ -6,13 +6,13 @@ nixcmd := "nix --experimental-features 'nix-command flakes'"
just --list
[doc("Build a flake output")]
build target='':
@{{ nixcmd }} run nixpkgs#nix-output-monitor -- build {{ justfile_directory() }}#{{ target }}
build target *ARGS="":
@{{ nixcmd }} run {{ARGS}} nixpkgs#nix-output-monitor -- build {{ justfile_directory() }}#{{ target }}
[doc('Build a nixos configuration')]
[group('deploy')]
build-system hostname=`hostname -s`:
@just build nixosConfigurations."{{ hostname }}".config.system.build.toplevel
build-system hostname=`hostname -s` *ARGS="":
@just build nixosConfigurations."{{ hostname }}".config.system.build.toplevel {{ ARGS }}
[doc('Wrapper for nixos-facter')]
[group('deploy')]
@ -132,8 +132,8 @@ new-host hostname username:
EOF
[doc("Update flake.lock")]
update:
{{ nixcmd }} flake update
update input='':
{{ nixcmd }} flake update {{ input }}
[doc("Run nix-tree")]
[group("tools")]