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,22 +1,22 @@
{ ... }:
{ ... }:
{
home.file.".config/hypr/wallpaper.png" = {
source = ../../../wallpapers/default.png;
home.file.".config/hypr/wallpaper.jpg" = {
source = ../../../wallpapers/default.jpg;
};
services.hyprpaper = let
default = "/home/lilith/.config/hypr/wallpaper.png";
in {
enable = true;
services.hyprpaper =
let
default = "/home/lilith/.config/hypr/wallpaper.jpg";
in
{
enable = true;
settings = {
splash = false;
settings = {
splash = false;
preload = [ default ];
preload = [ default ];
wallpaper = [
",${default}"
];
wallpaper = [ ",${default}" ];
};
};
};
}

View file

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

View file

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

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

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