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

15 lines
226 B
Nix
Raw Normal View History

{ config, inputs, pkgs }:
{
imports = [
./modules/alacritty.nix
./modules/autorandr.nix
2023-11-14 20:20:07 +00:00
./modules/i3.nix
];
xdg.configFile.wallpaper = {
source = ../../../config/wallpaper;
recursive = true;
};
}