From 37c20529c1cfb312601fc4e9e71611f93462a016 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 25 Sep 2021 15:29:07 +0200 Subject: [PATCH] home: wm: put modules into folders --- home/wm/default.nix | 10 +++++----- home/wm/{dunst.nix => dunst/default.nix} | 0 home/wm/{i3.nix => i3/default.nix} | 0 home/wm/{i3bar.nix => i3bar/default.nix} | 0 home/wm/{rofi.nix => rofi/default.nix} | 0 home/wm/{screen-lock.nix => screen-lock/default.nix} | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename home/wm/{dunst.nix => dunst/default.nix} (100%) rename home/wm/{i3.nix => i3/default.nix} (100%) rename home/wm/{i3bar.nix => i3bar/default.nix} (100%) rename home/wm/{rofi.nix => rofi/default.nix} (100%) rename home/wm/{screen-lock.nix => screen-lock/default.nix} (100%) diff --git a/home/wm/default.nix b/home/wm/default.nix index 2547a4e..eae9f14 100644 --- a/home/wm/default.nix +++ b/home/wm/default.nix @@ -10,11 +10,11 @@ let in { imports = [ - ./dunst.nix - ./i3.nix - ./i3bar.nix - ./rofi.nix - ./screen-lock.nix + ./dunst + ./i3 + ./i3bar + ./rofi + ./screen-lock ]; options.my.home.wm = with lib; { diff --git a/home/wm/dunst.nix b/home/wm/dunst/default.nix similarity index 100% rename from home/wm/dunst.nix rename to home/wm/dunst/default.nix diff --git a/home/wm/i3.nix b/home/wm/i3/default.nix similarity index 100% rename from home/wm/i3.nix rename to home/wm/i3/default.nix diff --git a/home/wm/i3bar.nix b/home/wm/i3bar/default.nix similarity index 100% rename from home/wm/i3bar.nix rename to home/wm/i3bar/default.nix diff --git a/home/wm/rofi.nix b/home/wm/rofi/default.nix similarity index 100% rename from home/wm/rofi.nix rename to home/wm/rofi/default.nix diff --git a/home/wm/screen-lock.nix b/home/wm/screen-lock/default.nix similarity index 100% rename from home/wm/screen-lock.nix rename to home/wm/screen-lock/default.nix