2024-07-23 16:14:27 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports =
|
|
|
|
[
|
|
|
|
./theme.nix
|
|
|
|
./xdg-mime.nix
|
|
|
|
]
|
|
|
|
++ map (n: ../../../home/applications/${n}) [
|
|
|
|
"fcitx5"
|
|
|
|
"firefox"
|
|
|
|
"foot"
|
|
|
|
"go"
|
|
|
|
"mpv"
|
|
|
|
"nautilus"
|
|
|
|
"nix"
|
|
|
|
"sway"
|
|
|
|
"thunderbird"
|
|
|
|
"ydict"
|
|
|
|
];
|
|
|
|
|
|
|
|
# https://wiki.archlinux.org/title/Fish#Start_X_at_login
|
|
|
|
programs.fish.loginShellInit = ''
|
|
|
|
if test -z "$DISPLAY" -a "$XDG_VTNR" = 1
|
|
|
|
exec sway
|
|
|
|
end
|
|
|
|
'';
|
|
|
|
|
2024-07-25 16:51:01 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
amberol
|
|
|
|
dconf-editor
|
|
|
|
file-roller
|
|
|
|
fractal
|
|
|
|
gnome-calculator
|
|
|
|
hyperfine
|
|
|
|
loupe
|
|
|
|
mousai
|
|
|
|
seahorse
|
|
|
|
inputs.self.legacyPackages.${pkgs.stdenv.hostPlatform.system}.scripts.lofi
|
|
|
|
];
|
2024-07-23 16:14:27 +00:00
|
|
|
|
|
|
|
programs.obs-studio.enable = true;
|
|
|
|
services.ssh-agent.enable = true;
|
|
|
|
}
|