nixos-config/home/felschr.nix

105 lines
1.7 KiB
Nix
Raw Normal View History

2021-10-29 20:38:31 +02:00
{ config, lib, pkgs, ... }:
2019-08-24 13:12:32 +02:00
{
2019-10-19 12:55:35 +02:00
imports = [
2020-03-13 19:41:55 +01:00
./shell
2024-01-30 20:40:31 +01:00
./tailscale.nix
2020-03-13 19:41:55 +01:00
./editors
./desktop
2020-03-21 16:46:18 +01:00
./desktop/monitors.nix
2020-03-13 21:18:08 +01:00
./git.nix
2020-03-13 19:41:55 +01:00
./keybase.nix
2023-04-15 00:46:36 +02:00
./element.nix
2020-03-13 19:41:55 +01:00
./signal.nix
./browsers
2020-03-13 19:41:55 +01:00
./planck.nix
2020-11-07 11:58:17 +01:00
./ausweisapp.nix
./gaming
./services/easyeffects.nix
2019-10-19 12:55:35 +02:00
];
2019-08-24 13:12:32 +02:00
2021-10-29 20:38:31 +02:00
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
2020-07-12 17:26:32 +02:00
enableSshSupport = true;
2022-01-20 17:00:17 +01:00
# use auth subkey's keygrip: gpg2 -K --with-keygrip
sshKeys = [
"3C48489F3B0FBB44E72180D4B1D7541C201C9987"
"8A6213DCDAF86BD3A63549FCFDF71B2C92DAE02C"
];
2020-07-12 22:19:52 +02:00
defaultCacheTtl = 600;
defaultCacheTtlSsh = 600;
};
programs.zsh.initExtra = ''
export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/gnupg/S.gpg-agent.ssh
'';
2021-10-29 20:38:31 +02:00
programs.ssh.enable = true;
2019-08-24 13:12:32 +02:00
2022-02-08 00:02:44 +01:00
programs.git.defaultProfile = "private";
2019-08-24 13:12:32 +02:00
2020-09-07 12:58:39 +02:00
xdg.configFile."nixpkgs/config.nix".text = ''
{
allowUnfree = true;
}
'';
2019-08-24 13:12:32 +02:00
home.packages = with pkgs; [
2023-09-13 14:01:04 +02:00
fh
2019-10-19 12:55:35 +02:00
# system
2019-10-19 09:14:56 +02:00
gparted
gnome-firmware-updater
mission-center
2019-10-19 09:14:56 +02:00
2019-10-19 12:55:35 +02:00
# productivity
2024-01-14 17:59:31 +01:00
anytype
2020-06-18 16:24:19 +02:00
libreoffice-fresh
tabbed
2019-10-19 12:55:35 +02:00
2022-01-01 02:03:56 +01:00
# work
2023-05-31 17:25:46 +02:00
teams-for-linux
2022-01-01 02:03:56 +01:00
2024-03-07 20:00:29 +01:00
# dev & admin
pods
2024-05-26 11:31:08 +02:00
# gaphor
2024-03-07 20:00:29 +01:00
2022-07-10 13:34:23 +02:00
# game dev
ldtk
pixelorama
2020-03-21 17:22:40 +01:00
# entertainment
celluloid
2022-03-16 17:40:30 +01:00
spot
spotify
2024-03-07 19:56:07 +01:00
pocket-casts
unstable.calibre
2022-09-04 11:24:05 +02:00
foliate
2020-03-21 17:22:40 +01:00
2023-11-19 00:57:39 +01:00
# security & privacy
2024-03-07 20:00:29 +01:00
authenticator
2024-04-30 23:10:05 +02:00
collision
2024-03-07 20:00:29 +01:00
metadata-cleaner
raider
2023-11-19 00:57:39 +01:00
yubikey-manager
yubikey-manager-qt
2024-03-07 20:00:29 +01:00
# yubioath-flutter # TODO conflicts with fluffychat
magic-wormhole-rs
warp
2024-05-26 11:31:08 +02:00
# onionshare-gui
transmission_4-gtk
2024-01-25 02:21:28 +01:00
qbittorrent
2022-05-12 11:39:12 +02:00
fragments
2020-09-23 09:39:23 +02:00
2019-10-19 12:55:35 +02:00
# other
ledger-live-desktop
2021-06-10 11:59:21 +02:00
portfolio
2022-05-12 11:39:12 +02:00
bottles
2023-04-09 21:37:10 +02:00
zotero
2024-03-07 20:00:29 +01:00
newsflash
2024-04-30 23:10:48 +02:00
emblem
2019-08-24 13:12:32 +02:00
];
2019-10-19 09:14:56 +02:00
home.stateVersion = "23.05";
2019-08-24 13:12:32 +02:00
}