From ad6f5469741ed4eee876531e95f91eaf3607f5cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Mon, 22 Oct 2018 09:58:07 +0200 Subject: [PATCH] Simplify wallpaper setup --- config.nix | 2 +- options.nix | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/config.nix b/config.nix index 726725f..d2ba453 100644 --- a/config.nix +++ b/config.nix @@ -185,7 +185,7 @@ in { }; home.file = { - ".background-image".source = config.constants.wallpaper; + ".background-image".source = ./art/37333571_p0_master1200.jpg; ".config/mpv/input.conf".text = import ./dot/mpv.nix; ".config/xfce4/terminal/terminalrc".text = import ./dot/terminal.nix; ".config/zathura/zathurarc".text = "set selection-clipboard clipboard"; diff --git a/options.nix b/options.nix index 66cc894..d574dcc 100644 --- a/options.nix +++ b/options.nix @@ -36,11 +36,6 @@ in { gtk = { name = "Paper"; package = pkgs.paper-gtk-theme; }; icon = { name = "Paper"; package = pkgs.paper-icon-theme; }; }; - - wallpaper = mkOption { - type = types.path; - default = pkgs.copyPathToStore ./art/haskell-grey.png; - }; }; }