50 lines
934 B
Nix
50 lines
934 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./modules/terminal.nix
|
|
./modules/scripts.nix
|
|
./modules/email.nix
|
|
./modules/menu.nix
|
|
./modules/scripts.nix
|
|
|
|
./programs/scripts.nix
|
|
{
|
|
options.windowManager.modifierKey = lib.mkOption {default = "SUPER";};
|
|
}
|
|
];
|
|
|
|
programs.menu = {
|
|
package = pkgs.tofi;
|
|
dmenuCommand = "${pkgs.tofi}/bin/tofi --fuzzy-match true";
|
|
drunCommand = "${pkgs.tofi}/bin/tofi-drun --drun-launch true";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
wl-clipboard
|
|
playerctl
|
|
quickemu
|
|
devenv
|
|
];
|
|
|
|
services.udiskie = {
|
|
enable = true;
|
|
notify = true;
|
|
};
|
|
|
|
programs.rbw.settings.pinentry = pkgs.pinentry-gnome3;
|
|
|
|
xdg.configFile."pipewire/pipewire.conf.d/raop-discover.conf".text = ''
|
|
context.modules = [
|
|
{
|
|
name = libpipewire-module-raop-discover
|
|
args = { }
|
|
}
|
|
]
|
|
'';
|
|
|
|
services.gnome-keyring.enable = true;
|
|
}
|