summaryrefslogtreecommitdiff
path: root/home/modules/wallpaper.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-21 22:34:46 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-28 17:48:23 +0100
commitb0214d50e9a728d77d98d791e92dfe3747f27e23 (patch)
tree95810c2d5c7af41d0e3e85570e60c2fb6658291c /home/modules/wallpaper.nix
parente761ac4b2c69f8ac267e53fa437c6978b207d743 (diff)
factor out common home-manager configuration
Diffstat (limited to 'home/modules/wallpaper.nix')
-rw-r--r--home/modules/wallpaper.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/home/modules/wallpaper.nix b/home/modules/wallpaper.nix
deleted file mode 100644
index 844f0ba..0000000
--- a/home/modules/wallpaper.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ config, lib, ... }:
-
-with lib;
-let wallpaper = config.home.wallpaper;
-in {
- options.home.wallpaper = mkOption {
- type = types.nullOr types.path;
- default = null;
- description = ''
- Path to the desktop wallpaper.
- '';
- example =
- literalExample "${config.home.homeDirectory}/images/wallpaper.jpg";
- };
-
- # config.home.file.".background-image".source = mkIf (wallpaper != null) wallpaper;
-}