39 lines
973 B
Nix
39 lines
973 B
Nix
{ pkgs, lib, wallpaper, style, ... } @args: let
|
|
sway = import ./sway args;
|
|
config = pkgs.writeText "swayConfig" sway.config;
|
|
in {
|
|
imports = [
|
|
./desktop/App.nix
|
|
./desktop/Bluetooth.nix
|
|
./desktop/Brightness.nix
|
|
./desktop/Dconf.nix
|
|
./desktop/GnomeApps.nix
|
|
./desktop/Portal.nix
|
|
./desktop/Realtime.nix
|
|
./desktop/Sound.nix
|
|
./desktop/Waybar.nix
|
|
];
|
|
|
|
services.gnome.gnome-keyring.enable = lib.mkForce false;
|
|
environment.systemPackages = with pkgs; [
|
|
gnome.adwaita-icon-theme # GTK icons.
|
|
grim slurp # Screenshot.
|
|
mako # Notification system.
|
|
networkmanagerapplet # Internet configuration.
|
|
pamixer pavucontrol pulseaudio # Audio.
|
|
playerctl # Multimedia controls.
|
|
wl-clipboard # Clipboard.
|
|
];
|
|
|
|
programs.sway = {
|
|
enable = true;
|
|
wrapperFeatures = {
|
|
base = true;
|
|
gtk = true;
|
|
};
|
|
extraOptions = [
|
|
"--config=${config}"
|
|
];
|
|
};
|
|
}
|