This commit is contained in:
parent
54954d6223
commit
54b43e4203
58 changed files with 224 additions and 242 deletions
|
@ -3,10 +3,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.core.bluetooth;
|
||||
cfg = config.core.bluetooth;
|
||||
in
|
||||
{
|
||||
options.features.core.bluetooth.enable = mkEnableOption "Enable bluetooth";
|
||||
options.core.bluetooth.enable = mkEnableOption "Enable bluetooth";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
hardware.bluetooth.enable = true;
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.core.openssh;
|
||||
cfg = config.core.openssh;
|
||||
in
|
||||
{
|
||||
options.features.core.openssh.enable = mkEnableOption "Enable openssh";
|
||||
options.core.openssh.enable = mkEnableOption "Enable openssh";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.openssh = {
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.core.pipewire;
|
||||
cfg = config.core.pipewire;
|
||||
in
|
||||
{
|
||||
options.features.core.pipewire.enable = mkEnableOption "Enable pipewire";
|
||||
options.core.pipewire.enable = mkEnableOption "Enable pipewire";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.pipewire = {
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.core.xbanish;
|
||||
cfg = config.core.xbanish;
|
||||
in
|
||||
{
|
||||
options.features.core.xbanish.enable = mkEnableOption "Enable xbanish";
|
||||
options.core.xbanish.enable = mkEnableOption "Enable xbanish";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.xbanish.enable = true;
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.core.zram;
|
||||
cfg = config.core.zram;
|
||||
in
|
||||
{
|
||||
options.features.core.zram.enable = mkEnableOption "Enable zram";
|
||||
options.core.zram.enable = mkEnableOption "Enable zram";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
zramSwap = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue