about summary refs log tree commit diff
path: root/profiles/desktop
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--profiles/desktop/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/profiles/desktop/default.nix b/profiles/desktop/default.nix
deleted file mode 100644
index 50b7828..0000000
--- a/profiles/desktop/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ config, lib, ... }:
-let cfg = config.my.profiles.desktop;
-in {
-  options.my.profiles.desktop = with lib; {
-    enable = mkEnableOption "desktop profile";
-  };
-  config = lib.mkIf cfg.enable {
-    my = {
-      systems = { fonts.enable = true; };
-      services = {
-        gnome.enable = true;
-        # we need avahi in order to use the printer/scanner
-        avahi.enable = true;
-      };
-      profiles = { wm.windowManager = "sway"; };
-      programs = { sway.enable = true; };
-    };
-  };
-}