moved basics out of sway.nix

This commit is contained in:
k
2024-09-25 20:01:30 -04:00
parent 7ce35c7655
commit 4a31a114a9
3 changed files with 24 additions and 10 deletions

20
hosts/home/tile.nix Normal file
View File

@@ -0,0 +1,20 @@
{ config, pkgs, inputs, ... }:
{
services = {
mako = { enable = true; };
};
programs = {
mako = { enable = true; };
foot = { enable = true; };
swaylock = {enable = true;};
rofi = {
enable = true;
package = pkgs.rofi-wayland;
show-icons = true;
};
};
}