add nixos hardware for starlite; enable all firmware; add base home manager for common config; add modproobe for tux wifi; add fooyin as fb2k replacement;

This commit is contained in:
2025-02-12 21:38:18 +00:00
parent 99768f0b4a
commit 8d7bb62014
10 changed files with 96 additions and 104 deletions

48
home-manager/base.nix Normal file
View File

@@ -0,0 +1,48 @@
{ pkgs, ... }:
{
imports = [
./fonts.nix
./terminal.nix
./firefox/firefox.nix
];
home.packages = with pkgs;[
# general
thunderbird
keepassxc
qbittorrent
libreoffice-qt
joplin-desktop
# comms
teamspeak_client
vesktop
];
home.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
programs = {
home-manager.enable = true;
chromium = {
enable = true;
package = pkgs.brave;
};
mpv = {
enable = true;
config = {
screenshot-directory = "~/Pictures/";
screenshot-template = "%F/%F_snapshot_%P";
};
};
};
}