feat: changed stuff

This commit is contained in:
Nick 2024-12-06 21:48:52 -06:00
parent 65fb80d1cb
commit 0fd351c9cb
15 changed files with 148 additions and 10 deletions

View file

@ -6,21 +6,30 @@
}: let
inherit (flake.config.people) user0;
in {
programs.firefox = {
programs.firefox = let
configPath = ./config;
in {
enable = true;
package = pkgs.firefox;
profiles = {
${user0} = let
configPath = ./config;
in
${user0} =
{
isDefault = true;
id = 0;
}
// (import (configPath + /bookmarks) {inherit flake;})
// (import (configPath + /extensions) {inherit nur;})
// (import (configPath + /search) {inherit flake;})
// (import (configPath + /settings))
// (import (configPath + /themes));
testing =
{
isDefault = false;
id = 1;
}
// (import (configPath + /bookmarks) {inherit flake;})
// (import (configPath + /search) {inherit flake;})
// (import (configPath + /themes));
};
};
}