Fix naming

This commit is contained in:
SebastianStork 2025-03-18 23:36:49 +01:00
parent 765db19140
commit 0175a0af51
17 changed files with 11 additions and 11 deletions

View file

@ -11,7 +11,7 @@
myConfig = { myConfig = {
boot = { boot = {
loader.systemd-boot.enable = true; loader.systemdBoot.enable = true;
silent = true; silent = true;
}; };
@ -24,7 +24,7 @@
sound.enable = true; sound.enable = true;
virtualisation.enable = true; virtualisation.enable = true;
sops.enable = true; sops.enable = true;
auto-gc.enable = true; garbageCollection.enable = true;
geoclue.enable = true; geoclue.enable = true;
tailscale = { tailscale = {
enable = true; enable = true;

View file

@ -11,7 +11,7 @@
myConfig = { myConfig = {
boot = { boot = {
loader.systemd-boot.enable = true; loader.systemdBoot.enable = true;
silent = true; silent = true;
}; };
@ -21,7 +21,7 @@
sound.enable = true; sound.enable = true;
virtualisation.enable = true; virtualisation.enable = true;
sops.enable = true; sops.enable = true;
auto-gc.enable = true; garbageCollection.enable = true;
geoclue.enable = true; geoclue.enable = true;
tailscale = { tailscale = {
enable = true; enable = true;

View file

@ -12,7 +12,7 @@
myConfig = { myConfig = {
sops.enable = true; sops.enable = true;
boot.loader.systemd-boot.enable = true; boot.loader.systemdBoot.enable = true;
tailscale = { tailscale = {
enable = true; enable = true;
ssh.enable = true; ssh.enable = true;

View file

@ -32,9 +32,9 @@ let
}"; }";
in in
{ {
options.myConfig.nextcloud-sync.enable = lib.mkEnableOption ""; options.myConfig.nextcloudSync.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.nextcloud-sync.enable { config = lib.mkIf config.myConfig.nextcloudSync.enable {
sops.secrets."nextcloud-password" = { }; sops.secrets."nextcloud-password" = { };
systemd.user = { systemd.user = {

View file

@ -1,8 +1,8 @@
{ config, lib, ... }: { config, lib, ... }:
{ {
options.myConfig.auto-gc.enable = lib.mkEnableOption ""; options.myConfig.garbageCollection.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.auto-gc.enable { config = lib.mkIf config.myConfig.garbageCollection.enable {
programs.nh = { programs.nh = {
enable = true; enable = true;
clean = { clean = {

View file

@ -1,8 +1,8 @@
{ config, lib, ... }: { config, lib, ... }:
{ {
options.myConfig.boot.loader.systemd-boot.enable = lib.mkEnableOption ""; options.myConfig.boot.loader.systemdBoot.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.boot.loader.systemd-boot.enable { config = lib.mkIf config.myConfig.boot.loader.systemdBoot.enable {
boot = { boot = {
tmp.cleanOnBoot = true; tmp.cleanOnBoot = true;
loader = { loader = {