diff --git a/home.nix b/home.nix index 910901f..285b70f 100644 --- a/home.nix +++ b/home.nix @@ -7,16 +7,12 @@ home.username = "avravels"; home.homeDirectory = "/home/avravels"; - - home.packages = with pkgs; [ - wofi - ]; - imports = [ ./programs/kitty.nix ./programs/zsh.nix ./programs/direnv.nix - ./wm/hyperland.nix + ./programs/firefox.nix + ./wm/hyprland.nix ]; } diff --git a/programs/firefox.nix b/programs/firefox.nix new file mode 100644 index 0000000..cbd8d29 --- /dev/null +++ b/programs/firefox.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + programs.firefox = { + enable = true; + }; +} diff --git a/wm/hyperland.nix b/wm/hyprland.nix similarity index 96% rename from wm/hyperland.nix rename to wm/hyprland.nix index e4849f2..d7e658f 100644 --- a/wm/hyperland.nix +++ b/wm/hyprland.nix @@ -1,6 +1,10 @@ { pkgs, ... }: { + home.packages = with pkgs; [ + wofi + ]; + wayland.windowManager.hyprland = { enable = true;