diff --git a/home-manager/home.nix b/home-manager/home.nix index c3a281e..738be94 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -21,7 +21,6 @@ in ./firefox.nix ./vscode.nix ./waybar.nix - ./wallpaper.nix ./swaylock.nix ./swaync.nix ]; @@ -62,19 +61,6 @@ in exec swaylock ''; }) - (pkgs.writeShellApplication { - name = "shell.nix"; - text = '' - cat > shell.nix < {} }: pkgs.mkShell { - buildInputs = with pkgs; [ ]; - packages = with pkgs; [ ]; - } - EOF - - echo "use nix" > .envrc - ''; - }) ] ++ import ./common-packages.nix { inherit pkgs inputs; }; # Nicely reload system units when changing configs diff --git a/home-manager/wallpaper.nix b/home-manager/wallpaper.nix deleted file mode 100644 index 6f9a19b..0000000 --- a/home-manager/wallpaper.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ pkgs, config, ... }: - - -let - pkg = (import - (pkgs.fetchFromGitHub { - owner = "Noratrieb"; - repo = "wallpapersc"; - rev = "ce0def46fd0ae8d36b65ede91e068c4bca2cf9a6"; - hash = "sha256-GSBFoAElnkh0+adIqSPKwJlyYiwp4NDhsOpT+SoZv5I="; - })) - { inherit pkgs; }; -in -{ - systemd.user.services.wallpapersc = { - Unit = { - Description = "wallpaper daemon"; - PartOf = [ - config.wayland.systemd.target - ]; - After = [ config.wayland.systemd.target ]; - ConditionEnvironment = "WAYLAND_DISPLAY"; - }; - Service = { - ExecStart = "${pkg}/bin/wallpapersc"; - Restart = "on-failure"; - }; - - Install.WantedBy = [ - config.wayland.systemd.target - ]; - }; -}