Use another git config for work machine
This commit is contained in:
22
systems/modules/home/wm/hyprpaper.nix
Normal file
22
systems/modules/home/wm/hyprpaper.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
wallpaper = builtins.toString ../backgrounds/monkey.jpg;
|
||||
wallpaper2 = builtins.toString ../backgrounds/bird.jpg;
|
||||
in
|
||||
{
|
||||
services.hyprpaper = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
preload = [
|
||||
wallpaper
|
||||
wallpaper2
|
||||
];
|
||||
wallpaper = [
|
||||
"DP-2,${wallpaper2}"
|
||||
",${wallpaper}"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user