nixos/modules/desktop/hyprland/default.nix
2023-07-24 15:31:21 +03:00

108 lines
2.4 KiB
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.hyprland;
in
{
options.modules.desktop.hyprland = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
services.xserver = {
enable = true;
displayManager = {
# lightdm = {
# enable = true;
# background = ../../../config/background.png;
# greeters.gtk = {
# enable = true;
# theme = {
# name = "vimix-dark-ruby";
# package = pkgs.vimix-gtk-themes;
# };
# };
# };
gdm = {
enable = true;
};
};
libinput = {
enable = true;
# no mouse accel
mouse = {
accelProfile = "flat";
};
# no touchpad accel
touchpad = {
accelProfile = "flat";
};
};
};
users.users.sako.packages = with pkgs; [
# use wayland counterparts
wofi
# network
networkmanagerapplet
# brightness
# TODO(sako):: find one for wayland
# gtk
vimix-gtk-themes
vimix-icon-theme
lxappearance
catppuccin-cursors.mochaDark
# i wonder if this works
flameshot
# IMPORTANT FOR GAMES
gamescope
];
environment.systemPackages = with pkgs; [
# hyprland no looky findy for packages so
# bg
hyprpaper
# bar
# this is just for hyprland lmao
(waybar.overrideAttrs (oldAttrs: { mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true "]; }))
inotify-tools
];
programs.hyprland = {
enable = true;
nvidiaPatches = true;
};
home-manager.users.sako = { pkgs , ...}: {
home.pointerCursor = {
name = "Catppuccin-Mocha-Dark";
size = 16;
x11 = {
enable = true;
};
gtk.enable = true;
package = pkgs.catppuccin-cursors.mochaDark;
};
gtk = {
theme.name = "vimix-dark-ruby";
iconTheme.name = "Vimix Ruby Dark";
};
home.file = {
"background.png" = {
enable = true;
source = ../../../config/background.png;
};
};
xdg.configFile = {
hypr = {
source = ../../../config/hyprland;
recursive = true;
};
waybar = {
source = ../../../config/waybar;
recursive = true;
};
};
};
};
}