# nixos-config - My current NixOS configuration # # Copyright (C) 2025 Benedikt Peetz # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of my nixos-config. # # You should have received a copy of the License along with this program. # If not, see . { self, system, ... }: { install = { type = "app"; program = "${self.packages."${system}".install}/bin/install"; }; activate = { type = "app"; program = "${self.packages."${system}".activate}/bin/activate"; }; setup = { type = "app"; program = "${self.packages."${system}".setup}/bin/setup"; }; config_setup = { type = "app"; program = "${self.packages."${system}".config_setup}/bin/config_setup"; }; default = self.apps."${system}".activate; }