nixos/home-manager/software/nitrogen/default.nix
Andreas Zweili d9c7c01d1c Fix the autostart setup
For some reason keeweb always crashed because of the `nitrogen --restore`
    tasks. Couldn't figure out why, however it works when the wallpaper gets
    restored by grobi after it changed the screen layout. Not perfect but it
    works for me.
2022-04-15 15:45:44 +02:00

7 lines
68 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
nitrogen
];
}