Move home-manager configurations files

This commit is contained in:
Yorick Barbanneau 2023-09-10 15:53:24 +02:00
parent 9715b9569a
commit 1650bdc29b
37 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,17 @@
{ hostConfig, ... }:
let
cfg = hostConfig;
in {
imports = [
./sway.nix
./mako.nix
./waybar.nix
./swaylock.nix
./swayidle.nix
./fuzzel.nix
] ++ (
if hostConfig.laptop then
[ ./kanshi.nix ]
else []
);
}