flake/hosts/dust/home/default.nix

41 lines
652 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-07-23 16:14:27 +00:00
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
];
2024-07-23 16:14:27 +00:00
programs.obs-studio.enable = true;
}