Merge branch 'main' of git.firelilith.org:lilith/nixos
This commit is contained in:
commit
6a8fbaee29
4 changed files with 26 additions and 14 deletions
|
|
@ -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}" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,6 +16,13 @@
|
|||
xdg-utils
|
||||
hyprshot
|
||||
|
||||
upower
|
||||
libgtop
|
||||
gvfs
|
||||
bluez
|
||||
gtksourceview3
|
||||
libsoup_3
|
||||
|
||||
vlc
|
||||
obs-studio
|
||||
keepassxc
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
./sops.nix
|
||||
./ssh.nix
|
||||
./syncthing.nix
|
||||
./power.nix
|
||||
./users.nix
|
||||
./zsh.nix
|
||||
|
||||
|
|
|
|||
4
system/core/power.nix
Normal file
4
system/core/power.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.upower.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue