From 565fa73f6b3a843fe92e0f202325f9bfc175c1e3 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sun, 24 Mar 2024 14:57:26 -0400 Subject: [PATCH] home-manager: added shell to common.nix --- home/aly-hyprland.nix | 2 +- home/common.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/home/aly-hyprland.nix b/home/aly-hyprland.nix index 9a3fb585..9b2d62a3 100644 --- a/home/aly-hyprland.nix +++ b/home/aly-hyprland.nix @@ -2,5 +2,5 @@ { imports = - [ ./common.nix ./common-gui.nix ./shell ./hypr ./waybar ./mako ./bemenu ]; + [ ./common.nix ./common-gui.nix ./hypr ./waybar ./mako ./bemenu ]; } diff --git a/home/common.nix b/home/common.nix index b3f04da0..36d6c3d4 100644 --- a/home/common.nix +++ b/home/common.nix @@ -1,6 +1,7 @@ { config, pkgs, ... }: { + imports = [ ./shell ]; home.username = "aly"; home.homeDirectory = "/home/aly";