This commit is contained in:
biscuit
2025-05-13 18:17:17 -05:00
parent 9290d27146
commit 2576eacb6b
7 changed files with 473 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
{ pkgs, ... }: {
home.packages = [
pkgs.hyprland
];
programs.hyprland = {
enable = true;
};
}
+8
View File
@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = [
pkgs.kitty
];
programs.kitty.enable = true;
}