move home-manager components to their own sections; create new systemd service to sync rclone
This commit is contained in:
20
home-manager/firefox/firefox.nix
Normal file
20
home-manager/firefox/firefox.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ inputs, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
firefox = {
|
||||
enable = true;
|
||||
languagePacks = [
|
||||
"en-GB"
|
||||
];
|
||||
policies = {
|
||||
"DisplayMenuBar" = true;
|
||||
};
|
||||
profiles.default = import ./firefox-profile.nix // {
|
||||
id = 0;
|
||||
name = "default";
|
||||
isDefault = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user