Luke Granger-Brown
80e85feede
To allow using my home-manager config on Darwin (and other non-NixOS machines), I introduce the concept of home-manager-ext, which gives me a much easier hook to import my config elsewhere.
11 lines
275 B
Nix
11 lines
275 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
args: {
|
|
nixos = import ./nixos args;
|
|
maint = import ./maint args;
|
|
secrets = import ./secrets args;
|
|
|
|
home-manager-ext = import ./home-manager-ext.nix args;
|
|
}
|