Generalize and move configs

This commit is contained in:
Jimbo 2024-11-12 18:03:28 -05:00
parent 17f2a16f48
commit ffb1b6d541
21 changed files with 73 additions and 64 deletions

View file

@ -1,9 +1,6 @@
{ config, pkgs, ... }:
{
imports = [
./greetd
./portals
];
imports = [ ./greetd ];
programs.sway = {
enable = config.system.desktop.enable;

View file

@ -1,13 +0,0 @@
{ config, pkgs, ... }:
{
xdg.portal = {
wlr = {
enable = config.system.desktop.enable;
settings.screencast = {
max_fps = 60;
chooser_type = "simple";
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or -B 00000066 -b 00000099";
};
};
};
}