refac: remove unused script
This commit is contained in:
parent
8d29c548ba
commit
dcdb9ec936
1 changed files with 7 additions and 14 deletions
21
flake.nix
21
flake.nix
|
@ -53,20 +53,13 @@
|
|||
{
|
||||
apps = lib.mapAttrs
|
||||
(name: program: { type = "app"; program = toString program; })
|
||||
(
|
||||
(flake-utils.lib.flattenTree {
|
||||
switch = lib.recurseIntoAttrs (lib.mapAttrs
|
||||
(hostname: machine: pkgs.writeShellScript "switch-${hostname}" ''
|
||||
${nixos-rebuild}/bin/nixos-rebuild switch --flake .#${hostname}
|
||||
'')
|
||||
self.nixosConfigurations);
|
||||
})
|
||||
// {
|
||||
fix-systemd = pkgs.writeShellScript "fix-systemd" ''
|
||||
systemctl --user reset-failed
|
||||
'';
|
||||
}
|
||||
);
|
||||
(flake-utils.lib.flattenTree {
|
||||
switch = lib.recurseIntoAttrs (lib.mapAttrs
|
||||
(hostname: machine: pkgs.writeShellScript "switch-${hostname}" ''
|
||||
${nixos-rebuild}/bin/nixos-rebuild switch --flake .#${hostname}
|
||||
'')
|
||||
self.nixosConfigurations);
|
||||
});
|
||||
|
||||
devShells = {
|
||||
default = pkgs.mkShell {
|
||||
|
|
Loading…
Reference in a new issue