add excellent wallpaper handler

This commit is contained in:
2025-12-05 05:55:34 +03:00
parent 993399e0bf
commit e647551a98
6 changed files with 687 additions and 10 deletions
+18
View File
@@ -0,0 +1,18 @@
{
description = "NixOS configuration for my personal setup";
inputs = { };
outputs = { self, nixpkgs, ... }:
let systems = [ "x86_64-linux" ];
in {
nixosConfigurations = lib.genAttrs systems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in nixpkgs.lib.nixosSystem {
inherit system;
modules = [ ./nixos/configuration.nix ];
specialArgs = { inherit pkgs; };
});
};
}