about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--users/fcuny/common.nix (renamed from users/fcuny/home-manager.nix)16
-rw-r--r--users/fcuny/desktop.nix18
-rw-r--r--users/fcuny/i3.nix1
3 files changed, 19 insertions, 16 deletions
diff --git a/users/fcuny/home-manager.nix b/users/fcuny/common.nix
index 95c1820..04bc1c1 100644
--- a/users/fcuny/home-manager.nix
+++ b/users/fcuny/common.nix
@@ -1,12 +1,6 @@
-{ config, lib, pkgs, ... }:
+{ config, lib, pkgs ... }
 
 {
-  xdg.enable = true;
-
-  imports = [
-    ./i3.nix
-  ];
-
   home.packages = [
     pkgs.jq
     pkgs.ripgrep
@@ -23,12 +17,4 @@
     enable = true;
     goPath = "workspace/go";
   };
-
-  programs.alacritty = {
-    enable = true;
-
-    settings = {
-      env.TERM = "xterm-256color";
-    };
-  };
 }
diff --git a/users/fcuny/desktop.nix b/users/fcuny/desktop.nix
new file mode 100644
index 0000000..6ded2a0
--- /dev/null
+++ b/users/fcuny/desktop.nix
@@ -0,0 +1,18 @@
+{ config, lib, pkgs, ... }:
+
+{
+  xdg.enable = true;
+
+  imports = [
+    ./common.nix
+    ./i3.nix
+  ];
+
+  programs.alacritty = {
+    enable = true;
+
+    settings = {
+      env.TERM = "xterm-256color";
+    };
+  };
+}
diff --git a/users/fcuny/i3.nix b/users/fcuny/i3.nix
index b09a439..aa97cb8 100644
--- a/users/fcuny/i3.nix
+++ b/users/fcuny/i3.nix
@@ -14,7 +14,6 @@
     extraConfig = {
       modi = "drun";
       show-icons = true;
-      icon-theme = "Numix-Square";
       combi-modi = "window,drun,ssh";
     };
   };