Merge branch 'main' of git.firelilith.org:lilith/nixos

This commit is contained in:
Lilith 2025-05-31 22:05:42 +02:00
commit 6a8fbaee29
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
4 changed files with 26 additions and 14 deletions

View file

@ -1,12 +1,14 @@
{ ... }: { ... }:
{ {
home.file.".config/hypr/wallpaper.png" = { home.file.".config/hypr/wallpaper.jpg" = {
source = ../../../wallpapers/default.png; source = ../../../wallpapers/default.jpg;
}; };
services.hyprpaper = let services.hyprpaper =
default = "/home/lilith/.config/hypr/wallpaper.png"; let
in { default = "/home/lilith/.config/hypr/wallpaper.jpg";
in
{
enable = true; enable = true;
settings = { settings = {
@ -14,9 +16,7 @@
preload = [ default ]; preload = [ default ];
wallpaper = [ wallpaper = [ ",${default}" ];
",${default}"
];
}; };
}; };
} }

View file

@ -16,6 +16,13 @@
xdg-utils xdg-utils
hyprshot hyprshot
upower
libgtop
gvfs
bluez
gtksourceview3
libsoup_3
vlc vlc
obs-studio obs-studio
keepassxc keepassxc

View file

@ -14,6 +14,7 @@
./sops.nix ./sops.nix
./ssh.nix ./ssh.nix
./syncthing.nix ./syncthing.nix
./power.nix
./users.nix ./users.nix
./zsh.nix ./zsh.nix

4
system/core/power.nix Normal file
View file

@ -0,0 +1,4 @@
{ ... }:
{
services.upower.enable = true;
}