mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-08 10:11:27 +01:00
Add flatpak enable option
This commit is contained in:
parent
fab9d17ee2
commit
ccf31c5fb0
@ -6,6 +6,7 @@
|
||||
./autorun.nix
|
||||
./boot.nix
|
||||
./displaymanager.nix
|
||||
./flatpak.nix
|
||||
./hwclock.nix
|
||||
./intel-amd.nix
|
||||
./intel-gpu.nix
|
||||
|
6
config/system/flatpak.nix
Normal file
6
config/system/flatpak.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ config, lib, ... }:
|
||||
|
||||
let inherit (import ../../options.nix) flatpak; in
|
||||
lib.mkIf ("${flatpak}" == "on") {
|
||||
services.flatpak.enable = true;
|
||||
}
|
@ -30,5 +30,6 @@
|
||||
nfsDevice = "nas:/volume1/nas";
|
||||
localHWClock = "off";
|
||||
ntp = "on";
|
||||
flatpak = "on";
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user