From ae20b39529ef1ff06e0c1a54dcbcaf2633701546 Mon Sep 17 00:00:00 2001 From: NullBite Date: Fri, 9 Feb 2024 08:07:16 +0100 Subject: [PATCH] home: move modules, add default.nix --- home/common/default.nix | 6 ++++++ home/{wm-common.nix => common/wm.nix} | 0 home/package-sets/default.nix | 5 +++++ home/{common.nix => profile/base.nix} | 0 home/profile/default.nix | 6 ++++++ home/{ => programs}/comma.nix | 0 home/programs/default.nix | 6 ++++++ home/sessions/default.nix | 6 ++++++ home/{ => sessions}/hyprland.nix | 0 9 files changed, 29 insertions(+) create mode 100644 home/common/default.nix rename home/{wm-common.nix => common/wm.nix} (100%) create mode 100644 home/package-sets/default.nix rename home/{common.nix => profile/base.nix} (100%) create mode 100644 home/profile/default.nix rename home/{ => programs}/comma.nix (100%) create mode 100644 home/programs/default.nix create mode 100644 home/sessions/default.nix rename home/{ => sessions}/hyprland.nix (100%) diff --git a/home/common/default.nix b/home/common/default.nix new file mode 100644 index 0000000..bcc2249 --- /dev/null +++ b/home/common/default.nix @@ -0,0 +1,6 @@ +{...}: +{ + imports = [ + ./wm.nix + ]; +} diff --git a/home/wm-common.nix b/home/common/wm.nix similarity index 100% rename from home/wm-common.nix rename to home/common/wm.nix diff --git a/home/package-sets/default.nix b/home/package-sets/default.nix new file mode 100644 index 0000000..cbe4b9e --- /dev/null +++ b/home/package-sets/default.nix @@ -0,0 +1,5 @@ +{...}: +{ + imports = [ + ]; +} diff --git a/home/common.nix b/home/profile/base.nix similarity index 100% rename from home/common.nix rename to home/profile/base.nix diff --git a/home/profile/default.nix b/home/profile/default.nix new file mode 100644 index 0000000..8d83827 --- /dev/null +++ b/home/profile/default.nix @@ -0,0 +1,6 @@ +{...}: +{ + imports = [ + ./base.nix + ]; +} diff --git a/home/comma.nix b/home/programs/comma.nix similarity index 100% rename from home/comma.nix rename to home/programs/comma.nix diff --git a/home/programs/default.nix b/home/programs/default.nix new file mode 100644 index 0000000..73afff3 --- /dev/null +++ b/home/programs/default.nix @@ -0,0 +1,6 @@ +{...}: +{ + imports = [ + ./comma.nix + ]; +} diff --git a/home/sessions/default.nix b/home/sessions/default.nix new file mode 100644 index 0000000..65c089d --- /dev/null +++ b/home/sessions/default.nix @@ -0,0 +1,6 @@ +{...}: +{ + imports = [ + ./hyprland.nix + ]; +} diff --git a/home/hyprland.nix b/home/sessions/hyprland.nix similarity index 100% rename from home/hyprland.nix rename to home/sessions/hyprland.nix