feat: renamed computers to hosts

This commit is contained in:
Artur Manuel 2024-11-30 15:18:36 +00:00
commit b03c70b486
34 changed files with 5 additions and 6 deletions

41
hosts/python/apps.nix Normal file
View file

@ -0,0 +1,41 @@
{
inputs,
pkgs,
...
}: {
environment = {
systemPackages = builtins.attrValues {
inherit
(pkgs)
nil
statix
deadnix
alejandra
;
neovim = inputs.painless-neovim.packages.${pkgs.system}.default;
};
sessionVariables = {EDITOR = "nvim";};
};
alqueva = {
mpd = {
enable = true;
ncmpcpp = true;
};
emacs.enable = true;
xonsh.enable = true;
libvirt.enable = true;
direnv.enable = true;
git.enable = true;
pipewire.enable = true;
qutebrowser.enable = true;
openssh.enable = true;
river.enable = true;
};
xdg.mime = {
enable = true;
defaultApplications = {
"text/html" = ["qutebrowser.desktop"];
};
};
}