mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
add swww and wallpapers
This commit is contained in:
parent
39a1d66646
commit
fcc48edd04
5 changed files with 14 additions and 0 deletions
|
|
@ -50,6 +50,7 @@
|
||||||
- `darwin` - Custom packages specific to dariwn-based hosts
|
- `darwin` - Custom packages specific to dariwn-based hosts
|
||||||
- `nixos` - Custom packages specific to nixos-based hosts
|
- `nixos` - Custom packages specific to nixos-based hosts
|
||||||
- `devshells` - Custom development shells and environments
|
- `devshells` - Custom development shells and environments
|
||||||
|
- `assets` - Storage for things like wallpapers
|
||||||
|
|
||||||
# Credits
|
# Credits
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
inputs.niri-flake.homeModules.niri
|
inputs.niri-flake.homeModules.niri
|
||||||
./sway/waybar.nix
|
./sway/waybar.nix
|
||||||
|
./swww
|
||||||
];
|
];
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
inputs.niri-flake.overlays.niri
|
inputs.niri-flake.overlays.niri
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./waybar.nix
|
./waybar.nix
|
||||||
|
../swww
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
|
||||||
6
home/crow/common/optional/desktops/swww/default.nix
Normal file
6
home/crow/common/optional/desktops/swww/default.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
services.swww = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.swww;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -61,6 +61,11 @@
|
||||||
description = "Variable Refresh Rate aka Adaptive Sync aka AMD FreeSync.\nValues are oriented towards hyprland's vrr values which are:\n0 = off, 1 = on, 2 = fullscreen only\nhttps://wiki.hyprland.org/Configuring/Variables/#misc";
|
description = "Variable Refresh Rate aka Adaptive Sync aka AMD FreeSync.\nValues are oriented towards hyprland's vrr values which are:\n0 = off, 1 = on, 2 = fullscreen only\nhttps://wiki.hyprland.org/Configuring/Variables/#misc";
|
||||||
default = 0;
|
default = 0;
|
||||||
};
|
};
|
||||||
|
background = lib.mkOption {
|
||||||
|
type = lib.types.path;
|
||||||
|
description = "Path to background in assets to get handled with swww";
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue