firefox: add testbed
This commit is contained in:
parent
195e324074
commit
6c67f75101
1 changed files with 21 additions and 0 deletions
21
modules/firefox/testbed.nix
Normal file
21
modules/firefox/testbed.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let package = pkgs.firefox;
|
||||
|
||||
in {
|
||||
stylix.testbed.application = {
|
||||
enable = true;
|
||||
name = "firefox";
|
||||
inherit package;
|
||||
};
|
||||
|
||||
home-manager.sharedModules = [{
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
inherit package;
|
||||
profiles.stylix.isDefault = true;
|
||||
};
|
||||
|
||||
stylix.targets.firefox.profileNames = [ "stylix" ];
|
||||
}];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue