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,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}"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
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