.dotfiles/pkgs/config/swarsel-switch/default.nix
2026-01-05 04:26:48 +01:00

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
'';
}