-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
imp: provide per channel modules paths to make it easy to "backport"
a module. imports = [ ${myChannelModulesPathk}/installer/...
- Loading branch information
David Arnold
committed
Apr 22, 2021
1 parent
072c13c
commit 361e2fe
Showing
2 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
{ ... }: { | ||
# auto-special args <channelName>ModulesPath for easy backporting of modules | ||
{ unstableModulesPath, ... }: { | ||
|
||
imports = [ "${unstableModulesPath}/installer/cd-dvd/installation-cd-minimal-new-kernel.nix" ]; | ||
disabledModules = [ "installer/cd-dvd/installation-cd-minimal-new-kernel.nix" ]; | ||
|
||
boot.loader.grub.devices = [ "nodev" ]; | ||
fileSystems."/" = { device = "test"; fsType = "ext4"; }; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters