diff --git a/flake.nix b/flake.nix index 5d96229..8bc054b 100644 --- a/flake.nix +++ b/flake.nix @@ -87,7 +87,7 @@ modules = odinBaseModules ++ [ home-manager.nixosModules.home-manager homeManagerSettings - { home-manager.users.bertof = import ./home_manager/odin.nix; } + { home-manager.users.bertof = import ./odin/hm.nix; } ] ++ extraModules; }; @@ -96,7 +96,7 @@ modules = odinBaseModules ++ [ home-manager-unstable.nixosModules.home-manager homeManagerSettings - { home-manager.users.bertof = import ./home_manager/odin.nix; } + { home-manager.users.bertof = import ./odin/hm.nix; } ] ++ extraModules; }; @@ -105,7 +105,7 @@ modules = thorBaseModules ++ [ home-manager.nixosModules.home-manager homeManagerSettings - { home-manager.users.bertof = import ./home_manager/thor.nix; } + { home-manager.users.bertof = import ./thod/hm.nix; } ] ++ extraModules; }; @@ -114,7 +114,7 @@ modules = thorBaseModules ++ [ home-manager-unstable.nixosModules.home-manager homeManagerSettings - { home-manager.users.bertof = import ./home_manager/thor.nix; } + { home-manager.users.bertof = import ./thod/hm.nix; } ] ++ extraModules; }; @@ -123,7 +123,7 @@ modules = lokiBaseModules ++ [ home-manager-unstable.nixosModules.home-manager homeManagerSettings - { home-manager.users.bertof = import ./home_manager/loki.nix; } + { home-manager.users.bertof = import ./loki/hm.nix; } ] ++ extraModules; }; @@ -132,7 +132,7 @@ modules = lokiBaseModules ++ [ home-manager.nixosModules.home-manager homeManagerSettings - { home-manager.users.bertof = import ./home_manager/loki.nix; } + { home-manager.users.bertof = import ./loki/hm.nix; } ] ++ extraModules; }; diff --git a/hm_modules/__basic.nix b/hm_modules/__basic.nix new file mode 100644 index 0000000..2d4eadb --- /dev/null +++ b/hm_modules/__basic.nix @@ -0,0 +1,47 @@ +{ pkgs, ... }: +{ + home = { + language.base = "it_IT.UTF-8"; + packages = with pkgs; [ + fd + file + htop + mmv-go + neofetch + nixos-option + nix-tree + unrar + unzip + wget + xclip + yq + zip + ]; + }; + + imports = [ + ./configurations.nix + + ./bash.nix + ./bat.nix + ./bottom.nix + ./broot.nix + ./dircolors.nix + ./direnv.nix + ./fonts.nix + ./fzf.nix + ./git.nix + ./gpg.nix + ./info.nix + ./jq.nix + ./keychain.nix + ./lf.nix + ./man.nix + ./shell_aliases.nix + ./ssh.nix + ./starship.nix + ./tmux.nix + ./zoxide.nix + ./zsh.nix + ]; +} diff --git a/home_manager/modules/alacritty.nix b/hm_modules/alacritty.nix similarity index 100% rename from home_manager/modules/alacritty.nix rename to hm_modules/alacritty.nix diff --git a/home_manager/modules/autorandr.nix b/hm_modules/autorandr.nix similarity index 100% rename from home_manager/modules/autorandr.nix rename to hm_modules/autorandr.nix diff --git a/home_manager/modules/bash.nix b/hm_modules/bash.nix similarity index 100% rename from home_manager/modules/bash.nix rename to hm_modules/bash.nix diff --git a/home_manager/modules/bat.nix b/hm_modules/bat.nix similarity index 100% rename from home_manager/modules/bat.nix rename to hm_modules/bat.nix diff --git a/home_manager/modules/bottom.nix b/hm_modules/bottom.nix similarity index 100% rename from home_manager/modules/bottom.nix rename to hm_modules/bottom.nix diff --git a/home_manager/modules/broot.nix b/hm_modules/broot.nix similarity index 100% rename from home_manager/modules/broot.nix rename to hm_modules/broot.nix diff --git a/home_manager/modules/bspwm.nix b/hm_modules/bspwm.nix similarity index 100% rename from home_manager/modules/bspwm.nix rename to hm_modules/bspwm.nix diff --git a/home_manager/modules/cava.nix b/hm_modules/cava.nix similarity index 100% rename from home_manager/modules/cava.nix rename to hm_modules/cava.nix diff --git a/home_manager/modules/configurations.nix b/hm_modules/configurations.nix similarity index 100% rename from home_manager/modules/configurations.nix rename to hm_modules/configurations.nix diff --git a/home_manager/modules/cpp.nix b/hm_modules/cpp.nix similarity index 100% rename from home_manager/modules/cpp.nix rename to hm_modules/cpp.nix diff --git a/home_manager/modules/dircolors.nix b/hm_modules/dircolors.nix similarity index 100% rename from home_manager/modules/dircolors.nix rename to hm_modules/dircolors.nix diff --git a/home_manager/modules/direnv.nix b/hm_modules/direnv.nix similarity index 100% rename from home_manager/modules/direnv.nix rename to hm_modules/direnv.nix diff --git a/home_manager/modules/dunst.nix b/hm_modules/dunst.nix similarity index 100% rename from home_manager/modules/dunst.nix rename to hm_modules/dunst.nix diff --git a/home_manager/modules/easyeffects.nix b/hm_modules/easyeffects.nix similarity index 100% rename from home_manager/modules/easyeffects.nix rename to hm_modules/easyeffects.nix diff --git a/home_manager/modules/fonts.nix b/hm_modules/fonts.nix similarity index 100% rename from home_manager/modules/fonts.nix rename to hm_modules/fonts.nix diff --git a/home_manager/modules/fzf.nix b/hm_modules/fzf.nix similarity index 100% rename from home_manager/modules/fzf.nix rename to hm_modules/fzf.nix diff --git a/home_manager/modules/git.nix b/hm_modules/git.nix similarity index 100% rename from home_manager/modules/git.nix rename to hm_modules/git.nix diff --git a/home_manager/modules/go.nix b/hm_modules/go.nix similarity index 100% rename from home_manager/modules/go.nix rename to hm_modules/go.nix diff --git a/home_manager/modules/gpg.nix b/hm_modules/gpg.nix similarity index 100% rename from home_manager/modules/gpg.nix rename to hm_modules/gpg.nix diff --git a/home_manager/modules/grobi.nix b/hm_modules/grobi.nix similarity index 100% rename from home_manager/modules/grobi.nix rename to hm_modules/grobi.nix diff --git a/home_manager/modules/gtk_theme.nix b/hm_modules/gtk_theme.nix similarity index 100% rename from home_manager/modules/gtk_theme.nix rename to hm_modules/gtk_theme.nix diff --git a/home_manager/modules/helix.nix b/hm_modules/helix.nix similarity index 100% rename from home_manager/modules/helix.nix rename to hm_modules/helix.nix diff --git a/home_manager/modules/info.nix b/hm_modules/info.nix similarity index 100% rename from home_manager/modules/info.nix rename to hm_modules/info.nix diff --git a/home_manager/modules/java.nix b/hm_modules/java.nix similarity index 100% rename from home_manager/modules/java.nix rename to hm_modules/java.nix diff --git a/home_manager/modules/javascript.nix b/hm_modules/javascript.nix similarity index 100% rename from home_manager/modules/javascript.nix rename to hm_modules/javascript.nix diff --git a/home_manager/modules/joystickwake.nix b/hm_modules/joystickwake.nix similarity index 100% rename from home_manager/modules/joystickwake.nix rename to hm_modules/joystickwake.nix diff --git a/home_manager/modules/jq.nix b/hm_modules/jq.nix similarity index 100% rename from home_manager/modules/jq.nix rename to hm_modules/jq.nix diff --git a/home_manager/modules/kakoune.nix b/hm_modules/kakoune.nix similarity index 100% rename from home_manager/modules/kakoune.nix rename to hm_modules/kakoune.nix diff --git a/home_manager/modules/keepassxc.nix b/hm_modules/keepassxc.nix similarity index 100% rename from home_manager/modules/keepassxc.nix rename to hm_modules/keepassxc.nix diff --git a/home_manager/modules/keychain.nix b/hm_modules/keychain.nix similarity index 100% rename from home_manager/modules/keychain.nix rename to hm_modules/keychain.nix diff --git a/home_manager/modules/kitty.nix b/hm_modules/kitty.nix similarity index 100% rename from home_manager/modules/kitty.nix rename to hm_modules/kitty.nix diff --git a/home_manager/modules/latex.nix b/hm_modules/latex.nix similarity index 100% rename from home_manager/modules/latex.nix rename to hm_modules/latex.nix diff --git a/home_manager/modules/lf.nix b/hm_modules/lf.nix similarity index 100% rename from home_manager/modules/lf.nix rename to hm_modules/lf.nix diff --git a/home_manager/modules/libinput-gestures.nix b/hm_modules/libinput-gestures.nix similarity index 100% rename from home_manager/modules/libinput-gestures.nix rename to hm_modules/libinput-gestures.nix diff --git a/home_manager/modules/lorri.nix b/hm_modules/lorri.nix similarity index 100% rename from home_manager/modules/lorri.nix rename to hm_modules/lorri.nix diff --git a/home_manager/modules/man.nix b/hm_modules/man.nix similarity index 100% rename from home_manager/modules/man.nix rename to hm_modules/man.nix diff --git a/home_manager/modules/mangohud.nix b/hm_modules/mangohud.nix similarity index 100% rename from home_manager/modules/mangohud.nix rename to hm_modules/mangohud.nix diff --git a/home_manager/modules/megasync.nix b/hm_modules/megasync.nix similarity index 100% rename from home_manager/modules/megasync.nix rename to hm_modules/megasync.nix diff --git a/home_manager/modules/nautilus.nix b/hm_modules/nautilus.nix similarity index 100% rename from home_manager/modules/nautilus.nix rename to hm_modules/nautilus.nix diff --git a/home_manager/modules/nix-index.nix b/hm_modules/nix-index.nix similarity index 100% rename from home_manager/modules/nix-index.nix rename to hm_modules/nix-index.nix diff --git a/home_manager/modules/noti.nix b/hm_modules/noti.nix similarity index 100% rename from home_manager/modules/noti.nix rename to hm_modules/noti.nix diff --git a/home_manager/modules/obs-studio.nix b/hm_modules/obs-studio.nix similarity index 100% rename from home_manager/modules/obs-studio.nix rename to hm_modules/obs-studio.nix diff --git a/home_manager/modules/office.nix b/hm_modules/office.nix similarity index 100% rename from home_manager/modules/office.nix rename to hm_modules/office.nix diff --git a/home_manager/modules/onedrive.nix b/hm_modules/onedrive.nix similarity index 100% rename from home_manager/modules/onedrive.nix rename to hm_modules/onedrive.nix diff --git a/home_manager/modules/pass.nix b/hm_modules/pass.nix similarity index 100% rename from home_manager/modules/pass.nix rename to hm_modules/pass.nix diff --git a/home_manager/modules/picom.nix b/hm_modules/picom.nix similarity index 100% rename from home_manager/modules/picom.nix rename to hm_modules/picom.nix diff --git a/home_manager/modules/polybar.nix b/hm_modules/polybar.nix similarity index 100% rename from home_manager/modules/polybar.nix rename to hm_modules/polybar.nix diff --git a/home_manager/modules/pro_audio.nix b/hm_modules/pro_audio.nix similarity index 100% rename from home_manager/modules/pro_audio.nix rename to hm_modules/pro_audio.nix diff --git a/home_manager/modules/pycharm.nix b/hm_modules/pycharm.nix similarity index 100% rename from home_manager/modules/pycharm.nix rename to hm_modules/pycharm.nix diff --git a/home_manager/modules/python.nix b/hm_modules/python.nix similarity index 100% rename from home_manager/modules/python.nix rename to hm_modules/python.nix diff --git a/home_manager/modules/rofi.nix b/hm_modules/rofi.nix similarity index 65% rename from home_manager/modules/rofi.nix rename to hm_modules/rofi.nix index 08b782e..d486547 100644 --- a/home_manager/modules/rofi.nix +++ b/hm_modules/rofi.nix @@ -10,6 +10,6 @@ theme = "onedark"; }; - xdg.configFile."rofi/nord.rasi".source = ../../configs/rofi/nord.rasi; - xdg.configFile."rofi/onedark.rasi".source = ../../configs/rofi/onedark.rasi; + xdg.configFile."rofi/nord.rasi".source = ../configs/rofi/nord.rasi; + xdg.configFile."rofi/onedark.rasi".source = ../configs/rofi/onedark.rasi; } diff --git a/home_manager/modules/rofimoji.nix b/hm_modules/rofimoji.nix similarity index 100% rename from home_manager/modules/rofimoji.nix rename to hm_modules/rofimoji.nix diff --git a/home_manager/modules/rust.nix b/hm_modules/rust.nix similarity index 100% rename from home_manager/modules/rust.nix rename to hm_modules/rust.nix diff --git a/home_manager/modules/screen_locker.nix b/hm_modules/screen_locker.nix similarity index 100% rename from home_manager/modules/screen_locker.nix rename to hm_modules/screen_locker.nix diff --git a/home_manager/modules/security.nix b/hm_modules/security.nix similarity index 100% rename from home_manager/modules/security.nix rename to hm_modules/security.nix diff --git a/home_manager/modules/shell_aliases.nix b/hm_modules/shell_aliases.nix similarity index 100% rename from home_manager/modules/shell_aliases.nix rename to hm_modules/shell_aliases.nix diff --git a/home_manager/modules/ssh.nix b/hm_modules/ssh.nix similarity index 100% rename from home_manager/modules/ssh.nix rename to hm_modules/ssh.nix diff --git a/home_manager/modules/starship.nix b/hm_modules/starship.nix similarity index 100% rename from home_manager/modules/starship.nix rename to hm_modules/starship.nix diff --git a/home_manager/modules/sxhkd.nix b/hm_modules/sxhkd.nix similarity index 100% rename from home_manager/modules/sxhkd.nix rename to hm_modules/sxhkd.nix diff --git a/home_manager/modules/syncthing.nix b/hm_modules/syncthing.nix similarity index 100% rename from home_manager/modules/syncthing.nix rename to hm_modules/syncthing.nix diff --git a/home_manager/modules/terminator.nix b/hm_modules/terminator.nix similarity index 100% rename from home_manager/modules/terminator.nix rename to hm_modules/terminator.nix diff --git a/home_manager/modules/thunar.nix b/hm_modules/thunar.nix similarity index 100% rename from home_manager/modules/thunar.nix rename to hm_modules/thunar.nix diff --git a/home_manager/modules/tmux.nix b/hm_modules/tmux.nix similarity index 100% rename from home_manager/modules/tmux.nix rename to hm_modules/tmux.nix diff --git a/home_manager/modules/update_background.nix b/hm_modules/update_background.nix similarity index 100% rename from home_manager/modules/update_background.nix rename to hm_modules/update_background.nix diff --git a/home_manager/modules/webapp.nix b/hm_modules/webapp.nix similarity index 100% rename from home_manager/modules/webapp.nix rename to hm_modules/webapp.nix diff --git a/home_manager/modules/xidlehook.nix b/hm_modules/xidlehook.nix similarity index 100% rename from home_manager/modules/xidlehook.nix rename to hm_modules/xidlehook.nix diff --git a/home_manager/modules/zathura.nix b/hm_modules/zathura.nix similarity index 100% rename from home_manager/modules/zathura.nix rename to hm_modules/zathura.nix diff --git a/home_manager/modules/zoxide.nix b/hm_modules/zoxide.nix similarity index 100% rename from home_manager/modules/zoxide.nix rename to hm_modules/zoxide.nix diff --git a/home_manager/modules/zsh.nix b/hm_modules/zsh.nix similarity index 100% rename from home_manager/modules/zsh.nix rename to hm_modules/zsh.nix diff --git a/home_manager/basic_env.nix b/home_manager/basic_env.nix deleted file mode 100644 index bff10b7..0000000 --- a/home_manager/basic_env.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ pkgs, ... }: -{ - home = { - language.base = "it_IT.UTF-8"; - packages = with pkgs; [ - fd - file - htop - mmv-go - neofetch - nixos-option - nix-tree - unrar - unzip - wget - xclip - yq - zip - ]; - }; - - imports = [ - ./modules/configurations.nix - - ./modules/bash.nix - ./modules/bat.nix - ./modules/bottom.nix - ./modules/broot.nix - ./modules/dircolors.nix - ./modules/direnv.nix - ./modules/fonts.nix - ./modules/fzf.nix - ./modules/git.nix - ./modules/gpg.nix - ./modules/info.nix - ./modules/jq.nix - ./modules/keychain.nix - ./modules/lf.nix - ./modules/man.nix - ./modules/shell_aliases.nix - ./modules/ssh.nix - ./modules/starship.nix - ./modules/tmux.nix - ./modules/zoxide.nix - ./modules/zsh.nix - ]; -} diff --git a/home_manager/loki.nix b/loki/hm.nix similarity index 51% rename from home_manager/loki.nix rename to loki/hm.nix index 806235d..0d58f51 100644 --- a/home_manager/loki.nix +++ b/loki/hm.nix @@ -37,31 +37,33 @@ ]; }; imports = [ - ./modules/configurations.nix - ./modules/fonts.nix - ./modules/bash.nix - ./modules/bat.nix - ./modules/bottom.nix - ./modules/broot.nix - ./modules/dircolors.nix - ./modules/direnv.nix - ./modules/git.nix - ./modules/gpg.nix - ./modules/helix.nix - ./modules/info.nix - ./modules/jq.nix - ./modules/kakoune.nix - ./modules/keychain.nix - ./modules/kitty.nix - ./modules/lf.nix - ./modules/man.nix - ./modules/megasync.nix - ./modules/noti.nix - ./modules/ssh.nix - ./modules/starship.nix - ./modules/tmux.nix - ./modules/zoxide.nix - ./modules/zsh.nix - ./modules/shell_aliases.nix + ../hm_modules/__basic.nix + + ../hm_modules/configurations.nix + ../hm_modules/fonts.nix + ../hm_modules/bash.nix + ../hm_modules/bat.nix + ../hm_modules/bottom.nix + ../hm_modules/broot.nix + ../hm_modules/dircolors.nix + ../hm_modules/direnv.nix + ../hm_modules/git.nix + ../hm_modules/gpg.nix + ../hm_modules/helix.nix + ../hm_modules/info.nix + ../hm_modules/jq.nix + ../hm_modules/kakoune.nix + ../hm_modules/keychain.nix + ../hm_modules/kitty.nix + ../hm_modules/lf.nix + ../hm_modules/man.nix + ../hm_modules/megasync.nix + ../hm_modules/noti.nix + ../hm_modules/ssh.nix + ../hm_modules/starship.nix + ../hm_modules/tmux.nix + ../hm_modules/zoxide.nix + ../hm_modules/zsh.nix + ../hm_modules/shell_aliases.nix ]; } diff --git a/home_manager/odin.nix b/odin/hm.nix similarity index 63% rename from home_manager/odin.nix rename to odin/hm.nix index 5a4fb22..b15d6ac 100644 --- a/home_manager/odin.nix +++ b/odin/hm.nix @@ -113,54 +113,54 @@ }; imports = [ - ./basic_env.nix + ../hm_modules/__basic.nix - ./modules/cpp.nix - # ./modules/go.nix - ./modules/java.nix - ./modules/javascript.nix - ./modules/latex.nix - ./modules/python.nix - ./modules/rust.nix + ../hm_modules/cpp.nix + # ../hm_modules/go.nix + ../hm_modules/java.nix + ../hm_modules/javascript.nix + ../hm_modules/latex.nix + ../hm_modules/python.nix + ../hm_modules/rust.nix - ./modules/alacritty.nix - ./modules/autorandr.nix - ./modules/bspwm.nix - ./modules/cava.nix - ./modules/easyeffects.nix - ./modules/dunst.nix - # ./modules/grobi.nix - ./modules/gtk_theme.nix - ./modules/helix.nix - # ./modules/joystickwake.nix - ./modules/kakoune.nix - # ./modules/keepassxc.nix - ./modules/kitty.nix - ./modules/libinput-gestures.nix - ./modules/mangohud.nix - ./modules/megasync.nix - ./modules/nautilus.nix - ./modules/nix-index.nix - ./modules/noti.nix - ./modules/obs-studio.nix - ./modules/office.nix - ./modules/onedrive.nix - ./modules/pass.nix - ./modules/picom.nix - ./modules/polybar.nix - ./modules/pro_audio.nix - # ./modules/pycharm.nix - ./modules/rofimoji.nix - ./modules/rofi.nix - ./modules/screen_locker.nix - # ./modules/security.nix - ./modules/sxhkd.nix - ./modules/syncthing.nix - ./modules/terminator.nix - # ./modules/thunar.nix - ./modules/update_background.nix - ./modules/webapp.nix - ./modules/xidlehook.nix - ./modules/zathura.nix + ../hm_modules/alacritty.nix + ../hm_modules/autorandr.nix + ../hm_modules/bspwm.nix + ../hm_modules/cava.nix + ../hm_modules/easyeffects.nix + ../hm_modules/dunst.nix + # ../hm_modules/grobi.nix + ../hm_modules/gtk_theme.nix + ../hm_modules/helix.nix + # ../hm_modules/joystickwake.nix + ../hm_modules/kakoune.nix + # ../hm_modules/keepassxc.nix + ../hm_modules/kitty.nix + ../hm_modules/libinput-gestures.nix + ../hm_modules/mangohud.nix + ../hm_modules/megasync.nix + ../hm_modules/nautilus.nix + ../hm_modules/nix-index.nix + ../hm_modules/noti.nix + ../hm_modules/obs-studio.nix + ../hm_modules/office.nix + ../hm_modules/onedrive.nix + ../hm_modules/pass.nix + ../hm_modules/picom.nix + ../hm_modules/polybar.nix + ../hm_modules/pro_audio.nix + # ../hm_modules/pycharm.nix + ../hm_modules/rofimoji.nix + ../hm_modules/rofi.nix + ../hm_modules/screen_locker.nix + # ../hm_modules/security.nix + ../hm_modules/sxhkd.nix + ../hm_modules/syncthing.nix + ../hm_modules/terminator.nix + # ../hm_modules/thunar.nix + ../hm_modules/update_background.nix + ../hm_modules/webapp.nix + ../hm_modules/xidlehook.nix + ../hm_modules/zathura.nix ]; } diff --git a/home_manager/thor.nix b/thor/hm.nix similarity index 55% rename from home_manager/thor.nix rename to thor/hm.nix index a9ba684..64c612d 100644 --- a/home_manager/thor.nix +++ b/thor/hm.nix @@ -85,51 +85,51 @@ }; imports = [ - ./basic_env.nix + ../hm_modules/__basic.nix - ./modules/cpp.nix - # ./modules/go.nix - ./modules/java.nix - ./modules/javascript.nix - ./modules/latex.nix - ./modules/python.nix - ./modules/rust.nix + ../hm_modules/cpp.nix + # ../hm_modules/go.nix + ../hm_modules/java.nix + ../hm_modules/javascript.nix + ../hm_modules/latex.nix + ../hm_modules/python.nix + ../hm_modules/rust.nix - ./modules/alacritty.nix - ./modules/autorandr.nix - ./modules/bspwm.nix - ./modules/easyeffects.nix - ./modules/dunst.nix - # ./modules/grobi.nix - ./modules/gtk_theme.nix - ./modules/helix.nix - ./modules/joystickwake.nix - ./modules/kakoune.nix - # ./modules/keepassxc.nix - ./modules/kitty.nix - ./modules/mangohud.nix - ./modules/megasync.nix - ./modules/nautilus.nix - ./modules/nix-index.nix - ./modules/noti.nix - ./modules/obs-studio.nix - ./modules/office.nix - ./modules/onedrive.nix - ./modules/pass.nix - ./modules/picom.nix - ./modules/polybar.nix - ./modules/pro_audio.nix - ./modules/rofimoji.nix - ./modules/rofi.nix - ./modules/screen_locker.nix - # ./modules/security.nix - ./modules/sxhkd.nix - ./modules/syncthing.nix - ./modules/terminator.nix - # ./modules/thunar.nix - ./modules/update_background.nix - ./modules/webapp.nix - ./modules/xidlehook.nix - ./modules/zathura.nix + ../hm_modules/alacritty.nix + ../hm_modules/autorandr.nix + ../hm_modules/bspwm.nix + ../hm_modules/easyeffects.nix + ../hm_modules/dunst.nix + # ../hm_modules/grobi.nix + ../hm_modules/gtk_theme.nix + ../hm_modules/helix.nix + ../hm_modules/joystickwake.nix + ../hm_modules/kakoune.nix + # ../hm_modules/keepassxc.nix + ../hm_modules/kitty.nix + ../hm_modules/mangohud.nix + ../hm_modules/megasync.nix + ../hm_modules/nautilus.nix + ../hm_modules/nix-index.nix + ../hm_modules/noti.nix + ../hm_modules/obs-studio.nix + ../hm_modules/office.nix + ../hm_modules/onedrive.nix + ../hm_modules/pass.nix + ../hm_modules/picom.nix + ../hm_modules/polybar.nix + ../hm_modules/pro_audio.nix + ../hm_modules/rofimoji.nix + ../hm_modules/rofi.nix + ../hm_modules/screen_locker.nix + # ../hm_modules/security.nix + ../hm_modules/sxhkd.nix + ../hm_modules/syncthing.nix + ../hm_modules/terminator.nix + # ../hm_modules/thunar.nix + ../hm_modules/update_background.nix + ../hm_modules/webapp.nix + ../hm_modules/xidlehook.nix + ../hm_modules/zathura.nix ]; }