nixos/modules/desktop/hyprland/default.nix

140 lines
3.2 KiB
Nix
Raw Normal View History

{ outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.desktop.hyprland;
in
{
options.modules.desktop.hyprland = {
2024-08-01 16:24:09 +04:00
enable = lib.mkEnableOption false;
};
2024-08-01 16:24:09 +04:00
config = lib.mkIf cfg.enable {
2024-08-04 02:54:06 +04:00
2024-08-05 01:33:48 +04:00
# services.greetd = {
# enable = true;
# settings = {
# default_session = {
# command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --time-format '%I:%M %p | %a • %h | %F' --cmd Hyprland";
# user = "greeter";
# };
# };
# };
2024-08-04 02:54:06 +04:00
2024-08-04 03:03:00 +04:00
services.xserver = {
2023-07-22 17:04:25 +04:00
enable = true;
2024-08-05 01:34:55 +04:00
displayManager = {
2024-08-04 02:54:06 +04:00
# # lightdm = {
# # enable = true;
# # background = ../../../config/background.png;
# # greeters.gtk = {
# # enable = true;
# # theme = {
# # name = "vimix-dark-ruby";
# # package = pkgs.vimix-gtk-themes;
# # };
# # };
# # };
2024-08-05 01:33:48 +04:00
gdm = {
enable = true;
};
2024-08-05 01:34:55 +04:00
};
2024-08-04 21:42:00 +04:00
};
services.libinput = {
2023-07-22 17:04:25 +04:00
enable = true;
# no mouse accel
mouse = {
accelProfile = "flat";
};
# no touchpad accel
touchpad = {
accelProfile = "flat";
};
};
users.users.sako.packages = with pkgs; [
# use wayland counterparts
wofi
2024-08-03 20:59:22 +04:00
rofi-wayland
2023-07-22 17:04:25 +04:00
# network
networkmanagerapplet
# brightness
# TODO(sako):: find one for wayland
# gtk
vimix-gtk-themes
vimix-icon-theme
lxappearance
catppuccin-cursors.mochaDark
2023-08-31 08:46:27 +04:00
# screenshot
grim
2023-07-22 17:04:25 +04:00
flameshot
2023-08-29 13:48:16 +04:00
# todo figure this out
2023-07-24 16:31:21 +04:00
gamescope
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
# 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
(waybar.overrideAttrs (oldAttrs: { mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true "]; }))
2023-09-07 08:24:53 +04:00
# lock
swaylock
2024-08-03 20:59:22 +04:00
ags
2023-08-31 08:27:56 +04:00
brightnessctl
2023-07-22 20:42:35 +04:00
inotify-tools
2024-08-04 03:03:00 +04:00
greetd.tuigreet
2023-07-22 17:04:25 +04:00
];
2023-07-22 19:52:49 +04:00
programs.hyprland = {
enable = 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 = {
2023-08-29 13:48:16 +04:00
enable = true;
2023-07-22 17:04:25 +04:00
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-09-07 08:24:53 +04:00
swaylock = {
source = ../../../config/swaylock;
recursive = true;
};
2024-08-04 20:50:04 +04:00
ags = {
source = ../../../config/ags;
recursive = true;
};
2023-07-22 17:04:25 +04:00
};
};
2023-09-07 08:36:24 +04:00
# swaylock doesnt work without this
security.pam.services.swaylock.text = ''
# PAM configuration file for the swaylock screen locker. By default, it includes
# the 'login' configuration file (see /etc/pam.d/login)
auth include login
'';
};
}