feature/stylix #16

Merged
ahuston-0 merged 7 commits from feature/stylix into main 2025-03-04 01:48:24 -05:00
2 changed files with 23 additions and 7 deletions
Showing only changes of commit 64f28b82d2 - Show all commits

View File

@ -6,17 +6,18 @@
}: }:
{ {
imports = [ imports = [
./programs.nix
./desktop.nix
./wifi.nix
./zerotier.nix
./fonts.nix
./polkit.nix
./audio.nix ./audio.nix
./desktop.nix
./fingerprint.nix ./fingerprint.nix
./steam.nix ./fonts.nix
./graphics.nix ./graphics.nix
./libvirt.nix ./libvirt.nix
./polkit.nix
./programs.nix
./steam.nix
./stylix.nix
./wifi.nix
./zerotier.nix
]; ];
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";

View File

@ -0,0 +1,15 @@
{ pkgs, ... }:
let
randWallpaper = pkgs.runCommand "stylix-wallpaper" { } ''
numWallpapers =
$((1 + $RANDOM % 10))
'';
in
{
stylix = {
enable = true;
image = randWallpaper;
polarity = "dark";
};
}