42 lines
825 B
Nix
42 lines
825 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.
|
|
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;
|
|
PATH = [ "/etc/swaybin" ];
|
|
};
|
|
etc.swaybin.source = ./sway/bin;
|
|
};
|
|
}
|