forked from DGNum/liminix
move output module imports example -> device
The outputs available are a characteristic of the device, not the example.
This commit is contained in:
parent
c81e7c4d35
commit
5eeb277564
16 changed files with 44 additions and 50 deletions
|
@ -3,17 +3,17 @@ let
|
|||
inherit (pkgs.pseudofile) dir symlink;
|
||||
in {
|
||||
imports = [
|
||||
../../vanilla-configuration.nix
|
||||
../../modules/squashfs.nix
|
||||
../../modules/ext4fs.nix
|
||||
../../modules/outputs/ext4fs.nix
|
||||
];
|
||||
config.rootfsType = "ext4";
|
||||
config.filesystem = dir {
|
||||
hello = {
|
||||
type = "f";
|
||||
uid = 7;
|
||||
gid = 24;
|
||||
file = "hello world";
|
||||
config = {
|
||||
rootfsType = "ext4";
|
||||
filesystem = dir {
|
||||
hello = {
|
||||
type = "f";
|
||||
uid = 7;
|
||||
gid = 24;
|
||||
file = "hello world";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue