nixos/modules/desktop/hyprland/default.nix

104 lines
2.3 KiB
Nix
Raw Normal View History

{ 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 {
2023-07-22 17:04:25 +04:00
services.xserver = {
enable = true;
displayManager = {
2023-07-23 00:35:21 +04:00
lightdm = {
2023-07-22 17:04:25 +04:00
enable = true;
2023-07-23 00:35:21 +04:00
background = ../../../config/background.png;
greeters.gtk = {
enable = true;
theme = {
name = "vimix-dark-ruby";
package = pkgs.vimix-gtk-themes;
};
};
2023-07-23 00:22:14 +04:00
};
2023-07-22 17:04:25 +04:00
};
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
2023-07-22 19:52:49 +04:00
];
2023-07-22 19:53:16 +04:00
environment.systemPackages = with pkgs; [
2023-07-22 19:52:49 +04:00
# hyprland no looky findy for packages so
# bg
2023-07-22 19:29:11 +04:00
hyprpaper
2023-07-22 20:08:50 +04:00
# bar
2023-07-22 20:15:53 +04:00
# this is just for hyprland lmao
(waybar.overrideAttrs (oldAttrs: { mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true "]; }))
2023-07-22 20:42:35 +04:00
inotify-tools
2023-07-22 17:04:25 +04:00
];
2023-07-22 19:52:49 +04:00
programs.hyprland = {
enable = true;
nvidiaPatches = true;
};
2023-07-22 17:04:25 +04:00
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 = {
2023-07-22 19:32:42 +04:00
hypr = {
source = ../../../config/hyprland;
recursive = true;
};
2023-07-22 20:08:50 +04:00
waybar = {
source = ../../../config/waybar;
recursive = true;
};
2023-07-22 17:04:25 +04:00
};
};
};
}