aboutsummaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'profiles')
-rw-r--r--profiles/default.nix1
-rw-r--r--profiles/desktop/default.nix19
-rw-r--r--profiles/wm/default.nix18
3 files changed, 0 insertions, 38 deletions
diff --git a/profiles/default.nix b/profiles/default.nix
deleted file mode 100644
index 19780e7..0000000
--- a/profiles/default.nix
+++ /dev/null
@@ -1 +0,0 @@
-{ ... }: { imports = [ ./wm ./desktop ]; }
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; };
- };
- };
-}
diff --git a/profiles/wm/default.nix b/profiles/wm/default.nix
deleted file mode 100644
index 7b1fe39..0000000
--- a/profiles/wm/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ config, lib, ... }:
-let cfg = config.my.profiles.wm;
-in {
- options.my.profiles.wm = with lib; {
- windowManager = mkOption {
- type = with types; nullOr (enum [ "sway" ]);
- default = null;
- example = "sway";
- description = "Which window manager to use";
- };
- };
- config = lib.mkMerge [
- (lib.mkIf (cfg.windowManager == "sway") {
- # Enable sway
- my.home.wm.windowManager = "sway";
- })
- ];
-}