mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
9 lines
295 B
Nix
9 lines
295 B
Nix
{ name, writeShellApplication, config, ... }:
|
|
|
|
writeShellApplication {
|
|
inherit name;
|
|
runtimeInputs = [ config.nix.package ];
|
|
text = ''
|
|
sudo nix-env --switch-generation "$1" -p /nix/var/nix/profiles/system && sudo /nix/var/nix/profiles/system/bin/switch-to-configuration switch
|
|
'';
|
|
}
|