blob: 22a487ef82480d4c3986dab4088cfc393b307499 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ config, pkgs, ... }:
{
#home.file."Pictures/wallpaper.png".source = ../wallpaper.jpeg;
home.packages = with pkgs; [
swaybg
];
xdg.configFile."niri/config.kdl".text = builtins.readFile ./config.kdl;
}
|