Apps, refactor, clean up, remove librewolf

Refactors to use app.nix for easier extension.

Removes librewolf from host, as it makes more sense on the user every
time.
This commit is contained in:
Julia Lange 2024-11-28 20:23:38 -08:00
parent 1f59950af8
commit db7f132f6e
Signed by: Julia
SSH key fingerprint: SHA256:KI8YxpkPRbnDRkXPgCuQCVz181++Vy7NAvmQj8alOhM
10 changed files with 27 additions and 80 deletions

View file

@ -1,12 +1,6 @@
{ config, pkgs, lib, ... }:
{
imports = [
./games
./input-remapper
./librewolf
./shells
./syncthing
./virtualbox
];
{ lib, ... }: let
fs = lib.fileset;
appFilter = {name, ...}: name == "app.nix";
in {
imports = fs.toList (fs.fileFilter appFilter ./.);
}