last migration from old nix config

This commit is contained in:
2024-11-06 21:10:20 +01:00
parent 942fdc8944
commit 46dcd0753e
14 changed files with 2044 additions and 44 deletions

View File

@@ -296,6 +296,7 @@
exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
# exec-once=zsh $HOME/.config/hypr/autostart.sh
exec-once = waybar
exec-once = keepassxc
#############################
### ENVIRONMENT VARIABLES ###
@@ -403,6 +404,7 @@
cursor {
no_hardware_cursors = true
inactive_timeout = 5
}
# https://wiki.hyprland.org/Configuring/Variables/#animations

8
home/system/rofi.nix Normal file
View File

@@ -0,0 +1,8 @@
{ lib, pkgs, ... }: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
location = "center";
theme = lib.mkForce ../configs/rose-pine.rasi;
};
}