feat: init config

This commit is contained in:
Zhongheng Liu 2024-07-31 07:45:22 +00:00
commit f10f6922fb
6 changed files with 287 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ pkgs, lib, ... }:
{
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
services.displayManager = {
enable = true;
execCmd = "${pkgs.lemurs}/bin/lemurs --no-logs";
};
}