mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 14:40:19 +02:00
added goober, say hello to goober
This commit is contained in:
parent
259aa1dd5e
commit
0035f0f1fa
36 changed files with 1708 additions and 269 deletions
8
hosts/goober/features/software/default.nix
Normal file
8
hosts/goober/features/software/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{config, ...}:
|
||||
{
|
||||
imports = [
|
||||
./neovim.nix
|
||||
./flatpak.nix
|
||||
./discord.nix
|
||||
];
|
||||
}
|
9
hosts/goober/features/software/discord.nix
Normal file
9
hosts/goober/features/software/discord.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{config, pkgs, ...}:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
(discord.override {
|
||||
withOpenASAR = true; # can do this here too
|
||||
withVencord = true;
|
||||
})
|
||||
];
|
||||
}
|
15
hosts/goober/features/software/flatpak.nix
Normal file
15
hosts/goober/features/software/flatpak.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{config, ...}: {
|
||||
services.flatpak.enable = true;
|
||||
|
||||
services.flatpak.packages = [
|
||||
"io.github.zen_browser.zen"
|
||||
"dev.vencord.Vesktop"
|
||||
"com.unicornsonlsd.finamp"
|
||||
];
|
||||
|
||||
services.flatpak.update.onActivation = true;
|
||||
services.flatpak.update.auto = {
|
||||
enable = true;
|
||||
onCalendar = "weekly"; # Default value
|
||||
};
|
||||
}
|
11
hosts/goober/features/software/neovim.nix
Normal file
11
hosts/goober/features/software/neovim.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{inputs, config, pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
inputs.neovim-nightly-overlay.packages.${pkgs.system}.default
|
||||
];
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
|
||||
defaultEditor = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue