2025-06-17 14:06:51 +02:00
|
|
|
{ pkgs, ... }:
|
2025-04-11 09:20:46 +02:00
|
|
|
{
|
2025-03-14 20:02:24 +01:00
|
|
|
imports = [
|
2025-03-27 20:28:36 +01:00
|
|
|
./audio.nix
|
|
|
|
./home
|
|
|
|
./dm.nix
|
|
|
|
./tlp.nix
|
|
|
|
./locale.nix
|
|
|
|
./printing.nix
|
|
|
|
./themeing.nix
|
2025-03-14 20:02:24 +01:00
|
|
|
];
|
2025-03-27 20:28:36 +01:00
|
|
|
services.flatpak.enable = true;
|
|
|
|
security.polkit.enable = true;
|
2025-03-14 20:02:24 +01:00
|
|
|
services.illum.enable = true;
|
2025-03-27 20:28:36 +01:00
|
|
|
services.upower.enable = true;
|
2025-04-16 12:57:34 +02:00
|
|
|
|
|
|
|
programs.ausweisapp = {
|
|
|
|
enable = true;
|
|
|
|
openFirewall = true;
|
|
|
|
};
|
2025-06-17 14:06:51 +02:00
|
|
|
|
|
|
|
xdg.portal.extraPortals = [
|
|
|
|
pkgs.xdg-desktop-portal-cosmic
|
|
|
|
];
|
|
|
|
xdg.portal.config.common.default = [
|
|
|
|
# "cosmic"
|
|
|
|
"gnome"
|
|
|
|
];
|
2025-03-14 20:02:24 +01:00
|
|
|
}
|