This commit is contained in:
@ -1,7 +1,6 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
let cfg = config.syscfg.make.gui;
|
||||
in {
|
||||
config = lib.mkIf cfg {
|
||||
{
|
||||
config = lib.mkIf (config.syscfg.make.gui) {
|
||||
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
|
@ -1,13 +1,15 @@
|
||||
{ pkgs, ... }: {
|
||||
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
# wlr.enable = true;
|
||||
extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-hyprland
|
||||
xdg-desktop-portal-gtk
|
||||
];
|
||||
config.common.default = [ "hyprland" "gtk" ];
|
||||
config = lib.mkIf (config.syscfg.make.gui) {
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
# wlr.enable = true;
|
||||
extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-hyprland
|
||||
xdg-desktop-portal-gtk
|
||||
];
|
||||
config.common.default = [ "hyprland" "gtk" ];
|
||||
};
|
||||
};
|
||||
|
||||
environment.sessionVariables = rec {
|
||||
|
Reference in New Issue
Block a user