refactor(nixos): extract Home Manager modules

This commit is contained in:
Oliver Davies 2023-11-07 06:39:10 +00:00
parent 2968f5396d
commit ec23fb1431
5 changed files with 110 additions and 101 deletions

View file

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