mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
9 lines
224 B
Nix
9 lines
224 B
Nix
{ name, writeShellApplication, config, ... }:
|
|
|
|
writeShellApplication {
|
|
inherit name;
|
|
runtimeInputs = [ config.nix.package ];
|
|
text = ''
|
|
sudo nix-env --list-generations --profile /nix/var/nix/profiles/system
|
|
'';
|
|
}
|