nixos/modules/desktop/hyprland/default.nix

171 lines
3.9 KiB
Nix
Raw Normal View History

2024-08-05 17:19:42 +04:00
{ inputs, outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.desktop.hyprland;
in
{
2024-08-11 22:33:15 +04:00
imports = [
inputs.hyprland.nixosModules.default
];
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-11 15:52:13 +04:00
modules.desktop.dunst.enable = lib.mkForce false;
2024-08-05 01:37:56 +04:00
services.greetd = {
enable = true;
settings = {
2024-08-06 19:40:53 +04:00
terminal = {
vt = 2;
};
2024-08-05 01:37:56 +04:00
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:37:56 +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:37:56 +04:00
# gdm = {
# enable = true;
# };
# };
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
2024-08-05 17:19:42 +04:00
sway-contrib.grimshot
2023-08-29 13:48:16 +04:00
# todo figure this out
2023-07-24 16:31:21 +04:00
gamescope
2024-08-05 17:19:42 +04:00
# clipboard
wl-clipboard
# playerctl
playerctl
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
2024-08-05 05:44:00 +04:00
waybar
2023-09-07 08:24:53 +04:00
# lock
2024-08-07 16:18:10 +04:00
# swaylock
2024-08-08 16:15:12 +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
2024-08-11 15:52:13 +04:00
# notifications
mako
2023-07-22 17:04:25 +04:00
];
2023-07-22 19:52:49 +04:00
programs.hyprland = {
enable = true;
};
2024-08-05 02:39:56 +04:00
2024-08-07 16:00:51 +04:00
programs.hyprlock.enable = true;
2024-08-05 03:31:02 +04:00
# ags battery
2024-08-08 16:15:12 +04:00
# services.upower.enable = true;
2024-08-05 03:31:02 +04:00
2024-08-05 02:39:56 +04:00
# piece of shit thanks!
services.emacs.startWithGraphical = false;
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;
};
2024-08-05 17:19:42 +04:00
# this automatically sets the types
# thanks PartyWumpus
# https://github.com/PartyWumpus/dotfiles/blob/277949d84d53a58a3f52be935cd3c581c89d5d7c/modules/hyprland/hyprland.nix#L492
2024-08-08 16:15:12 +04:00
# "/nixos/config/ags/types" = {
# source = "${inputs.ags.packages.x86_64-linux.agsWithTypes.out}/share/com.github.Aylur.ags/types";
# };
2023-07-22 17:04:25 +04:00
};
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;
};
2024-08-07 16:18:10 +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
environment.sessionVariables.NIXOS_OZONE_WL = "1";
2023-09-07 08:36:24 +04:00
# swaylock doesnt work without this
2024-08-07 16:18:10 +04:00
# 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
# '';
2023-09-07 08:36:24 +04:00
};
}