mirror of
https://github.com/Defelo/nixos.git
synced 2025-05-12 10:42:49 +00:00
6 lines
178 B
Bash
Executable file
6 lines
178 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
path=$(nix eval --raw .#nixosConfigurations."$(cat /proc/sys/kernel/hostname)".config.system.build.toplevel.outPath)
|
|
nix-store -r "$path"
|