mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-22 00:21: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 = {
|
||||
boot = {
|
||||
loader.systemd-boot.enable = true;
|
||||
loader.systemdBoot.enable = true;
|
||||
silent = true;
|
||||
};
|
||||
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
sound.enable = true;
|
||||
virtualisation.enable = true;
|
||||
sops.enable = true;
|
||||
auto-gc.enable = true;
|
||||
garbageCollection.enable = true;
|
||||
geoclue.enable = true;
|
||||
tailscale = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
myConfig = {
|
||||
boot = {
|
||||
loader.systemd-boot.enable = true;
|
||||
loader.systemdBoot.enable = true;
|
||||
silent = true;
|
||||
};
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
sound.enable = true;
|
||||
virtualisation.enable = true;
|
||||
sops.enable = true;
|
||||
auto-gc.enable = true;
|
||||
garbageCollection.enable = true;
|
||||
geoclue.enable = true;
|
||||
tailscale = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
myConfig = {
|
||||
sops.enable = true;
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.systemdBoot.enable = true;
|
||||
tailscale = {
|
||||
enable = true;
|
||||
ssh.enable = true;
|
||||
|
|
|
|||
|
|
@ -32,9 +32,9 @@ let
|
|||
}";
|
||||
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" = { };
|
||||
|
||||
systemd.user = {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{ 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 = {
|
||||
enable = true;
|
||||
clean = {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{ 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 = {
|
||||
tmp.cleanOnBoot = true;
|
||||
loader = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue