summaryrefslogtreecommitdiff
path: root/features/system/global
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
commit31c316d19cd974bb81a5d6de62142ff24db1c78e (patch)
treecb941422c76cb8953830a8d58c8e14dca1a10319 /features/system/global
parent1c21018347aa277caba74e554cb8d1b1e7fc6bed (diff)
reorganized directory structure
Diffstat (limited to 'features/system/global')
-rw-r--r--features/system/global/agenix.nix7
-rw-r--r--features/system/global/nix.nix13
-rw-r--r--features/system/global/noxterm.nix3
3 files changed, 0 insertions, 23 deletions
diff --git a/features/system/global/agenix.nix b/features/system/global/agenix.nix
deleted file mode 100644
index f232886..0000000
--- a/features/system/global/agenix.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{ pkgs, inputs, ...}: {
- imports = [ inputs.agenix.nixosModules.default ];
- environment.systemPackages = [
- inputs.agenix.packages.${pkgs.system}.default
- ];
- age.identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
-}
diff --git a/features/system/global/nix.nix b/features/system/global/nix.nix
deleted file mode 100644
index a0ece02..0000000
--- a/features/system/global/nix.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ ... }: {
- nix = {
- settings = {
- experimental-features = [ "nix-command" "flakes" ];
- auto-optimise-store = true;
- };
- gc = {
- automatic = true;
- dates = "daily";
- options = "-d 5";
- };
- };
-}
diff --git a/features/system/global/noxterm.nix b/features/system/global/noxterm.nix
deleted file mode 100644
index 44c0917..0000000
--- a/features/system/global/noxterm.nix
+++ /dev/null
@@ -1,3 +0,0 @@
-{ pkgs, ... }: {
- services.xserver.excludePackages = [ pkgs.xterm ];
-}