aboutsummaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'profiles')
-rw-r--r--profiles/default.nix2
-rw-r--r--profiles/trusted/default.nix22
2 files changed, 1 insertions, 23 deletions
diff --git a/profiles/default.nix b/profiles/default.nix
index 059b945..1dcb283 100644
--- a/profiles/default.nix
+++ b/profiles/default.nix
@@ -1 +1 @@
-{ ... }: { imports = [ ./gtk ./trusted ./wm ./desktop ]; }
+{ ... }: { imports = [ ./gtk ./wm ./desktop ]; }
diff --git a/profiles/trusted/default.nix b/profiles/trusted/default.nix
deleted file mode 100644
index 927ba45..0000000
--- a/profiles/trusted/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ config, lib, ... }:
-let
- cfg = config.my.profiles.trusted;
- isEnabled = config.my.home.wm.windowManager == "sway";
-in {
- options.my.profiles.trusted = with lib; {
- enable = mkEnableOption "trusted profile";
- };
- config = lib.mkIf cfg.enable {
- my.home.ssh.enable = true;
- my.home.gpg = {
- enable = true;
- pinentry = "gnome3";
- defaultKey = "23348B57F01D4234B5CFBA0923208AC01EB6EEA1";
- };
- my.home.gcloud.enable = true;
- my.home.mail.enable = true;
- my.home.pass.enable = true;
- my.home.seahorse.enable = isEnabled;
- my.services.syncthing.enable = true;
- };
-}