Update system

This commit is contained in:
2026-03-12 04:09:08 +03:00
parent f189ff1d40
commit 37fc953d3a
8 changed files with 135 additions and 117 deletions
+1 -1
View File
@@ -56,7 +56,7 @@
services.greetd = let
tuigreet = lib.getExe pkgs.tuigreet;
session = lib.getExe inputs.hyprland.packages.${pkgs.system}.default;
session = lib.getExe' inputs.hyprland.packages.${pkgs.system}.default "start-hyprland";
in {
enable = true;
settings = {
+5 -2
View File
@@ -1,4 +1,4 @@
{ pkgs, lib, config, inputs, ... }: {
{ pkgs, lib, config, osConfig, inputs, ... }: {
wayland.windowManager.hyprland = let
colors = config.lib.stylix.colors;
@@ -13,7 +13,10 @@
notify = lambda s: system(f"notify-desktop Wallpaper '{s}'")
folder = "${config.home.homeDirectory}/Wallpapers"
url = "https://wallhaven.cc/api/v1/collections/sweetbread/1764377"
url = "https://wallhaven.cc/api/v1/collections/sweetbread/${
if osConfig.networking.hostName == "Rias" then "1764377"
else "2108577"
}"
with open("${config.sops.secrets."tokens/apis/wallhaven".path}") as f:
token = f.read()