2023-08-02 10:23:16 +01:00
|
|
|
{ pkgs, hyprland, ... }: {
|
|
|
|
imports = [ ./desktop.nix hyprland.nixosModules.default ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
xdg-utils
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
];
|
|
|
|
security.pam.services.swaylock = { };
|
|
|
|
services = {
|
|
|
|
blueman.enable = true;
|
|
|
|
gvfs.enable = true;
|
|
|
|
tumbler.enable = true;
|
2023-08-03 21:26:48 +01:00
|
|
|
greetd.settings = {
|
|
|
|
default_session.command = "Hyprland";
|
|
|
|
initial_session.command = "Hyprland";
|
|
|
|
};
|
2023-08-02 10:23:16 +01:00
|
|
|
};
|
2023-08-05 18:06:21 +01:00
|
|
|
xdg.portal.enable = true;
|
2023-08-02 10:23:16 +01:00
|
|
|
xdg.portal.extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
|
2023-08-03 16:01:13 +01:00
|
|
|
programs = {
|
|
|
|
hyprland.enable = true;
|
|
|
|
thunar = {
|
|
|
|
enable = true;
|
|
|
|
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
|
|
|
|
};
|
|
|
|
};
|
2023-08-02 10:23:16 +01:00
|
|
|
}
|