This commit is contained in:
Morten Olsen
2023-09-16 12:33:21 +02:00
parent 6dbaad1bbe
commit 33f79566b7
65 changed files with 387 additions and 228 deletions

View File

@@ -0,0 +1,25 @@
{ config, pkgs, ... }:
{
imports = [
../kitty
];
home.packages = [
pkgs.wl-clipboard
];
home.file = {
".config/hypr" = {
source = ./files/hypr;
recursive = true;
};
".config/eww" = {
source = ./files/eww;
recursive = true;
};
".config/wofi" = {
source = ./files/wofi;
recursive = true;
};
};
}