mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-10 22:04:38 -05:00
feat: added user2 and refactored to accommodate
This commit is contained in:
parent
c169f84dcc
commit
9cdcf4fec4
97 changed files with 1473 additions and 1052 deletions
11
home/modules/gui/apps/browsers/braveNix/default.nix
Normal file
11
home/modules/gui/apps/browsers/braveNix/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
brave
|
||||
;
|
||||
};
|
||||
}
|
|
@ -12,21 +12,9 @@ in
|
|||
programs.firefox =
|
||||
let
|
||||
configPath = ./config;
|
||||
bookmarksPath = import (configPath + /bookmarks) {
|
||||
inherit
|
||||
flake
|
||||
;
|
||||
};
|
||||
extensionsPath = import (configPath + /extensions) {
|
||||
inherit
|
||||
pkgs
|
||||
;
|
||||
};
|
||||
searchPath = import (configPath + /search) {
|
||||
inherit
|
||||
flake
|
||||
;
|
||||
};
|
||||
bookmarksPath = import (configPath + /bookmarks) { inherit flake; };
|
||||
extensionsPath = import (configPath + /extensions) { inherit pkgs; };
|
||||
searchPath = import (configPath + /search) { inherit flake; };
|
||||
settingsPath = import (configPath + /settings);
|
||||
themesPath = import (configPath + /themes);
|
||||
in
|
||||
|
|
11
home/modules/gui/apps/browsers/firefoxNix/default.nix
Normal file
11
home/modules/gui/apps/browsers/firefoxNix/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
firefox
|
||||
;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue