From 54a30af8c2e809be0ff13493258b33d2b089a042 Mon Sep 17 00:00:00 2001 From: Nico Date: Sun, 30 Nov 2025 21:30:26 +1100 Subject: [PATCH 1/4] nijika: add adguardhome --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 28c4033..8cdfdea 100644 --- a/flake.nix +++ b/flake.nix @@ -43,6 +43,7 @@ ./modules/services/miniflux.nix ./modules/services/ssh.nix ./modules/services/glance.nix + ./modules/services/adguardhome.nix ./modules/services/media/arr.nix ./modules/services/media/jellyfin.nix From c573fdf708133178d9b42e5d235bd1887e28c958 Mon Sep 17 00:00:00 2001 From: Nico Date: Sun, 30 Nov 2025 21:31:13 +1100 Subject: [PATCH 2/4] nijika: remove linkding --- flake.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8cdfdea..ce86815 100644 --- a/flake.nix +++ b/flake.nix @@ -31,7 +31,6 @@ ./modules/applications/keepassxc.nix ./modules/games/linux.nix ./modules/services/archiveteam-warrior.nix - ./modules/services/linkding.nix ./modules/nix/linux.nix ./modules/shell.nix From f21dac27879cfb1d67b04d0cc1de2c7aac1a7f47 Mon Sep 17 00:00:00 2001 From: Nico Date: Sun, 30 Nov 2025 21:31:31 +1100 Subject: [PATCH 3/4] nijika: remove glance --- flake.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/flake.nix b/flake.nix index ce86815..aa3ec5c 100644 --- a/flake.nix +++ b/flake.nix @@ -41,7 +41,6 @@ ./modules/services/forgejo.nix ./modules/services/miniflux.nix ./modules/services/ssh.nix - ./modules/services/glance.nix ./modules/services/adguardhome.nix ./modules/services/media/arr.nix ./modules/services/media/jellyfin.nix From fcb86e0709d0d9466e239c4aa9387c9d57ed866a Mon Sep 17 00:00:00 2001 From: Nico Date: Sun, 30 Nov 2025 21:32:18 +1100 Subject: [PATCH 4/4] Revert "users: add deploy" This reverts commit cded5bfdf7df57e7215ef37ca41b29468f2c4d61. --- flake.nix | 1 - modules/users/deploy.nix | 28 ---------------------------- 2 files changed, 29 deletions(-) delete mode 100644 modules/users/deploy.nix diff --git a/flake.nix b/flake.nix index aa3ec5c..3e79ba0 100644 --- a/flake.nix +++ b/flake.nix @@ -50,7 +50,6 @@ ./modules/users/nico.nix ./modules/users/alex.nix - ./modules/users/deploy.nix ./modules/hardware/secureboot.nix lanzaboote.nixosModules.lanzaboote diff --git a/modules/users/deploy.nix b/modules/users/deploy.nix deleted file mode 100644 index 9af6eb4..0000000 --- a/modules/users/deploy.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ config, lib, pkgs, ...}: - -{ - users.users.deploy = { - isNormalUser = true; - home = "/var/empty"; - group = "deploy"; - }; - - users.groups.deploy = {}; - - users.users.deploy.openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILXwl+UyfeN/9M/z21mlVS3guYEqIjtgAf5pCPkjXhR0" - ]; - - security.sudo.extraRules = [ - { - users = [ "deploy" ]; - runAs = "root"; - commands = [ - { - command = "ALL"; - options = [ "NOPASSWD" ]; - } - ]; - } - ]; -}