add ventoy
This commit is contained in:
parent
e293e87124
commit
6be4f41519
3 changed files with 8 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
fileSystems = {
|
||||
"/home/chris/games" = {
|
||||
|
@ -18,6 +18,9 @@
|
|||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = [ pkgs.ventoy-full-qt ];
|
||||
permittedInsecurePackages = [ "ventoy-qt5-1.1.05"];
|
||||
|
||||
boot.supportedFilesystems = [ "nfs" ];
|
||||
|
||||
modules = {
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{ config, options, lib, pkgs, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
inherit (lib) mkMerge mkIf mkEnableOption mkDefault mkForce;
|
||||
|
||||
cfg = config.modules.boot;
|
||||
in
|
||||
{
|
||||
options.modules.boot =
|
||||
options.modules.boot =
|
||||
{
|
||||
silentBoot = mkEnableOption "Enable silent boot";
|
||||
animatedBoot = mkEnableOption "Enable boot animation";
|
||||
|
@ -45,4 +45,4 @@ in
|
|||
};
|
||||
})
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ in
|
|||
services.nfs.server = {
|
||||
enable = true;
|
||||
exports = ''
|
||||
/var/media manwe(rw,fsid=0,no_subtree_check)
|
||||
/var/media manwe(rw,sync,no_subtree_check,fsid=0)
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue