This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-06-19 22:02:53 +02:00
parent 2513906a22
commit 85ec6f4c7c
5 changed files with 86 additions and 40 deletions

View File

@@ -1,7 +1,8 @@
{pkgs, secrets, user, inputs, ...}: {
{pkgs, pkgs-unstable, secrets, user, inputs, ...}: {
programs.firefox = {
enable = true;
package = pkgs.firefox;
package = pkgs-unstable.firefox;
# package = pkgs.firefox;
profiles.${user} = {
# extensions = with inputs.firefox-addons; [
# ublock-origin

View File

@@ -49,22 +49,25 @@ let
in
lib.mkIf (user != "tv")
{
home.packages = [
home.packages = with pkgs; [
# hyprland itself is a system package
pkgs.hyprland-protocols
hyprland-protocols
pkgs-unstable.hyprlock
pkgs-unstable.hypridle
hyprlock
hypridle
pkgs.grim
pkgs.slurp
grim
slurp
];
] ++ (with pkgs-unstable; [
]);
wayland.windowManager.hyprland = {
enable = true;
# package = pkgs-unstable.hyprland;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
package = pkgs.hyprland;
# package = inputs.hyprland.packages.${pkgs.system}.hyprland;
xwayland.enable = true;
systemd.enable = true;
plugins = [

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
gleam
];
}