mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
Fix naming
This commit is contained in:
parent
765db19140
commit
0175a0af51
17 changed files with 11 additions and 11 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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 = {
|
||||||
|
|
|
||||||
|
|
@ -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 = {
|
||||||
|
|
|
||||||
|
|
@ -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 = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue