Manage Firefox with home-manager
I'm not exactly sure how to manage profiles; I wasn't able to get this to work so I just ended up managing profiles manually.
This commit is contained in:
parent
6f10416cdd
commit
08958c0a78
|
@ -114,7 +114,6 @@
|
||||||
users.users.chandler.extraGroups = [ "networkmanager" "wheel" "dialout" "cdrom" ];
|
users.users.chandler.extraGroups = [ "networkmanager" "wheel" "dialout" "cdrom" ];
|
||||||
home-manager.users.chandler = { pkgs, ... }: {
|
home-manager.users.chandler = { pkgs, ... }: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
firefox
|
|
||||||
kate
|
kate
|
||||||
prismlauncher
|
prismlauncher
|
||||||
libreoffice-qt
|
libreoffice-qt
|
||||||
|
@ -166,6 +165,18 @@
|
||||||
signing.key = null; # "let GnuPG decide what signing key to use depending on commit's author"
|
signing.key = null; # "let GnuPG decide what signing key to use depending on commit's author"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.firefox = {
|
||||||
|
enable = true;
|
||||||
|
# profiles = {
|
||||||
|
# default = {
|
||||||
|
# id = 0;
|
||||||
|
# name = "default";
|
||||||
|
# isDefault = true;
|
||||||
|
# search.default = "DuckDuckGo";
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
};
|
||||||
|
|
||||||
home.stateVersion = "23.11";
|
home.stateVersion = "23.11";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue