32 lines
460 B
Nix
32 lines
460 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
./theme.nix
|
|
./xdg-mime.nix
|
|
]
|
|
++ map (n: ../../../home/applications/${n}) [
|
|
"fcitx5"
|
|
"firefox"
|
|
"foot"
|
|
"go"
|
|
"mpv"
|
|
"nautilus"
|
|
"nix"
|
|
"sway"
|
|
"thunderbird"
|
|
"ydict"
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
dconf-editor
|
|
file-roller
|
|
fractal
|
|
gnome-calculator
|
|
hyperfine
|
|
loupe
|
|
seahorse
|
|
];
|
|
|
|
programs.obs-studio.enable = true;
|
|
}
|