57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{ pkgs, config, lib, ... }:
|
|
with lib;
|
|
let
|
|
kwallet = { pkgs, lib, ... }: {
|
|
home.packages = with pkgs; [ kdePackages.kwallet kdePackages.ksshaskpass ];
|
|
home.sessionVariables = {
|
|
# https://wiki.archlinux.org/title/KDE_Wallet#Using_the_KDE_Wallet_to_store_ssh_key_passphrases
|
|
SSH_ASKPASS = lib.getExe pkgs.kdePackages.ksshaskpass;
|
|
SSH_ASKPASS_REQUIRE = "prefer";
|
|
};
|
|
};
|
|
in
|
|
{
|
|
imports = [
|
|
./modules/monitors.nix
|
|
./modules/linux/graphical
|
|
./modules/X11/xfce4-notifyd.nix
|
|
./modules/programs/discord.nix
|
|
];
|
|
config = (mkIf pkgs.stdenv.isLinux {
|
|
home.packages = with pkgs; [
|
|
psmisc # killall and friends
|
|
file # Query file type
|
|
nix-output-monitor
|
|
|
|
pinentry-qt
|
|
|
|
# Java stuff
|
|
jdk21
|
|
sbt
|
|
];
|
|
|
|
# Git "safe-directory"
|
|
programs.git.extraConfig.safe.directory = [
|
|
"${config.home.homeDirectory}/.config/nixpkgs"
|
|
];
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
# Audio stuff!
|
|
services.easyeffects.enable = true;
|
|
|
|
# Bluetooth controls
|
|
# services.mpris-proxy.enable = true;
|
|
|
|
# Owncloud
|
|
services.owncloud-client.enable = true;
|
|
services.owncloud-client.package = pkgs.owncloud-client.overrideAttrs (attrs: {
|
|
buildInputs = attrs.buildInputs ++ [ pkgs.qt6.qtwayland ];
|
|
});
|
|
|
|
# UDisks automounter
|
|
services.udiskie.enable = true;
|
|
});
|
|
}
|
|
|