feat: renamed computers to hosts
This commit is contained in:
parent
f6af310a18
commit
b03c70b486
34 changed files with 5 additions and 6 deletions
41
hosts/python/apps.nix
Normal file
41
hosts/python/apps.nix
Normal 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"];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue