xps 19
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 = [
|
||||
|
||||
6
home-modules/programming/gleam.nix
Normal file
6
home-modules/programming/gleam.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gleam
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user