mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 22:43:55 -05:00
Aly Raffauf
4da4930db9
fallarbor: added disko and fixed nixos-hardwarem odule import fallarbor: added appropriate flake entries
21 lines
474 B
Nix
21 lines
474 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [./hyprpaper-random.nix];
|
|
|
|
options = {
|
|
alyraffauf.desktop.hyprland.hyprpaper.enable =
|
|
lib.mkEnableOption "Enables hyprpaper and assorted wallpapers.";
|
|
};
|
|
|
|
config = lib.mkIf config.alyraffauf.desktop.hyprland.hyprpaper.enable {
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [hyprpaper];
|
|
|
|
xdg.configFile."hypr/hyprpaper.conf".source = ./hyprpaper.conf;
|
|
};
|
|
}
|