Compare commits

..

2 Commits

51 changed files with 28 additions and 50 deletions

16
home-manager/cursors.nix Normal file
View File

@ -0,0 +1,16 @@
let
theme = import ../theme.nix;
in
{
catppuccin.cursors = {
enable = true;
flavor = theme.flavor;
accent = "dark";
};
home.pointerCursor = {
gtk.enable = true;
x11.enable = true;
size = 16;
};
}

View File

@ -14,6 +14,7 @@ in
inputs.nixvim.homeManagerModules.nixvim inputs.nixvim.homeManagerModules.nixvim
./btop.nix ./btop.nix
./cava.nix ./cava.nix
./cursors.nix
./default-applications.nix ./default-applications.nix
./development ./development
./fish.nix ./fish.nix
@ -29,8 +30,6 @@ in
./yazi ./yazi
]; ];
catppuccin.cursors.enable = true;
dconf = { dconf = {
enable = true; enable = true;
settings = { settings = {

View File

@ -4,6 +4,6 @@
./nixvim ./nixvim
./zed.nix ./zed.nix
]; ];
# TODO set Walyland vmOptions in Jetbrains products, Requires current installed version # TODO set Wayland vmOptions in Jetbrains products, Requires current installed version in path
# -Dawt.toolkit.name=WLToolKit # -Dawt.toolkit.name=WLToolKit
} }

View File

@ -4,7 +4,6 @@
{ {
imports = [ imports = [
./binds.nix ./binds.nix
./hyprcursor
./waybar ./waybar
./hypridle ./hypridle
./hyprlock ./hyprlock

View File

@ -1,37 +0,0 @@
{ pkgs, ... }:
let
cursorSize = 24;
cursorTheme = "rose-pine-hyprcursor";
cursorDir = "hyprcursors";
in
{
# TODO remove in favor of Catppuccin cursors
home = {
packages = with pkgs; [
hyprcursor
];
file = {
".local/share/icons/${cursorTheme}/manifest.hl".text = ''
name = ${cursorTheme}
description = BreezeX remixed with Rose Pine remixed to Hyprcursor format
version = 0.3.2
cursors_directory = ${cursorDir}
'';
".local/share/icons/${cursorTheme}/${cursorDir}" = {
source = ./${cursorDir};
recursive = true;
};
};
sessionVariables = {
XCURSOR_SIZE = cursorSize;
HYPRCURSOR_SIZE = cursorSize;
HYPRCURSOR_THEME = cursorSize;
};
};
wayland.windowManager.hyprland.settings.exec-once = [
"hyprctl setcursor $HYPRCURSOR_THEME $HYPRCURSOR_SIZE" # Set cursor
];
}

View File

@ -1,7 +1,7 @@
let let
# Time in seconds # Time in seconds
lockAfter = 1200; lockAfter = 1200;
#screenOffAfter = 1500; screenOffAfter = 1500;
suspendAfter = 7200; suspendAfter = 7200;
in in
{ {
@ -20,12 +20,12 @@ in
timeout = lockAfter; timeout = lockAfter;
on-timeout = "loginctl lock-session"; on-timeout = "loginctl lock-session";
} }
# Turn off screens TODO still buggy on DP-1 # Turn off screens
# { {
# timeout = screenOffAfter; timeout = screenOffAfter;
# on-timeout = "hyprctl dispatch dpms off"; on-timeout = "hyprctl dispatch dpms off";
# on-resume = "hyprctl dispatch dpms on"; on-resume = "hyprctl dispatch dpms on";
# } }
# Suspend # Suspend
{ {
timeout = suspendAfter; timeout = suspendAfter;

View File

@ -7,8 +7,8 @@ in
{ {
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
monitor = [ monitor = [
"DP-1, 1920x1080@144, 0x0, 1" "DP-1, 3440x1440@175, 0x0, 1"
"DP-3, 3840x2160@60, 1920x0, 1.5, transform, 1" "DP-3, 3840x2160@60, 3440x0, 1.5, transform, 1"
]; ];
# Autostart # Autostart

View File

@ -24,6 +24,7 @@
shellAliases = { shellAliases = {
# Transfer shell config to target device # Transfer shell config to target device
ssh = "kitty +kitten ssh"; ssh = "kitty +kitten ssh";
nix-shell = "nix-shell --run fish"; # Start nix-shells using fish
}; };
}; };
}; };