Add firefox and move wofi to hyprland config

This commit is contained in:
2026-01-16 22:02:41 +01:00
parent dcb0ea1961
commit 25acaf1a43
3 changed files with 13 additions and 6 deletions

View File

@@ -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
];
}

7
programs/firefox.nix Normal file
View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.firefox = {
enable = true;
};
}

View File

@@ -1,6 +1,10 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
wofi
];
wayland.windowManager.hyprland = {
enable = true;