43 lines
1,000 B
Nix
43 lines
1,000 B
Nix
{ pkgs, lib, ... }: {
|
|
imports = [
|
|
./desktop/App.nix
|
|
./desktop/Bluetooth.nix
|
|
./desktop/Brightness.nix
|
|
./desktop/Dconf.nix
|
|
./desktop/Portal.nix
|
|
./desktop/Realtime.nix
|
|
./desktop/Sound.nix
|
|
];
|
|
|
|
|
|
services.gnome.gnome-keyring.enable = lib.mkForce false;
|
|
environment.systemPackages = with pkgs; [
|
|
grim slurp # Screenshot.
|
|
mako # Notification system.
|
|
networkmanagerapplet # Internet configuration.
|
|
pamixer pavucontrol pulseaudio # Audio.
|
|
sway-contrib.inactive-windows-transparency
|
|
wl-clipboard # Clipboard.
|
|
];
|
|
|
|
programs.sway = {
|
|
enable = true;
|
|
wrapperFeatures = {
|
|
base = true;
|
|
gtk = true;
|
|
};
|
|
extraOptions = [
|
|
"--config=${./sway/Config}"
|
|
];
|
|
};
|
|
|
|
environment = {
|
|
variables = {
|
|
FOOT_CONFIG = ./foot/Foot.ini;
|
|
SWAY_CONFIG = ./sway/module;
|
|
SWAY_IWT_PATH = "${pkgs.sway-contrib.inactive-windows-transparency}/bin/inactive-windows-transparency.py";
|
|
# PATH = [ "/etc/swaybin" ]; # NOTE: Kept as an example on PATH modification.
|
|
};
|
|
};
|
|
}
|