dotfiles/system/nixos/home-manager/desktop.nix

14 lines
200 B
Nix
Raw Normal View History

{ config, inputs, pkgs }:
{
imports = [
./modules/alacritty.nix
./modules/sway.nix
];
xdg.configFile.wallpaper = {
source = ../../../config/wallpaper;
recursive = true;
};
}