forked from Shinonome/dots-hyprland
58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{ config, lib, pkgs, nixgl, home_attrs, ... }:
|
|
{
|
|
programs.home-manager.enable = true;
|
|
nixGL.packages = nixgl.packages;
|
|
nixGL.defaultWrapper = "mesa";
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
extraPortals = with pkgs; [
|
|
xdg-desktop-portal-gnome
|
|
xdg-desktop-portal-gtk
|
|
xdg-desktop-portal-wlr
|
|
];
|
|
config.hyprland = {
|
|
default = [ "hyprland" "gtk" ];
|
|
"org.freedesktop.impl.portal.ScreenCast" = [
|
|
"gnome"
|
|
];
|
|
};
|
|
};
|
|
## Allow fontconfig to discover fonts in home.packages
|
|
fonts.fontconfig.enable = true;
|
|
|
|
# home.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
wayland.windowManager.hyprland = {
|
|
## Make sure home-manager not generate ~/.config/hypr/hyprland.conf
|
|
systemd.enable = false; plugins = []; settings = {}; extraConfig = "";
|
|
enable = true;
|
|
## Use NixGL
|
|
package = config.lib.nixGL.wrap pkgs.hyprland;
|
|
};
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
##### Sure #####
|
|
## Basic cli tool
|
|
## inetutils: provides hostname, ifconfig, ping, etc.
|
|
## libnotify: provides notify-send
|
|
jq rsync inetutils libnotify
|
|
## Media related
|
|
brightnessctl playerctl pavucontrol
|
|
## Clipboard/Emoji
|
|
wl-clipboard cliphist
|
|
## Terminal and shell
|
|
foot cowsay lolcat
|
|
|
|
##### Fonts/Icons/Cursors/Decoration #####
|
|
fontconfig
|
|
|
|
##### Other basic things #####
|
|
dbus xorg.xlsclients networkmanager
|
|
|
|
##### Not work, to be solved #####
|
|
# swaylock pamtester
|
|
];
|
|
}//home_attrs;
|
|
}
|