Set firefox home page to nucleus on work machines

Enable home button again
This commit is contained in:
Evie Litherland-Smith 2024-02-07 07:42:56 +00:00
parent 5e4e5e870d
commit 61a5aa813a
3 changed files with 13 additions and 4 deletions

View file

@ -1,4 +1,8 @@
{pkgs, ...}: { {
lib,
pkgs,
...
}: {
# Setup keyfile # Setup keyfile
boot.initrd.secrets = {"/crypto_keyfile.bin" = null;}; boot.initrd.secrets = {"/crypto_keyfile.bin" = null;};
@ -12,4 +16,5 @@
''; '';
systemPackages = with pkgs; [openfortivpn samba nomachine-client]; systemPackages = with pkgs; [openfortivpn samba nomachine-client];
}; };
programs.firefox.policies.Homepage.URL = lib.mkForce "https://nucleus.ukaea.uk";
} }

View file

@ -1,4 +1,8 @@
{pkgs, ...}: { {
lib,
pkgs,
...
}: {
boot.loader.efi.efiSysMountPoint = "/boot/efi"; boot.loader.efi.efiSysMountPoint = "/boot/efi";
# Setup keyfile # Setup keyfile
@ -14,4 +18,5 @@
''; '';
systemPackages = with pkgs; [openfortivpn samba nomachine-client]; systemPackages = with pkgs; [openfortivpn samba nomachine-client];
}; };
programs.firefox.policies.Homepage.URL = lib.mkForce "https://nucleus.ukaea.uk";
} }

View file

@ -78,7 +78,6 @@
HardwareAcceleration = true; HardwareAcceleration = true;
Homepage = { Homepage = {
URL = "https://nixos.wiki"; URL = "https://nixos.wiki";
Additional = ["https://wiki.archlinux.org"];
Locked = true; Locked = true;
StartPage = "homepage-locked"; StartPage = "homepage-locked";
}; };
@ -200,7 +199,7 @@
Locked = true; Locked = true;
}; };
SearchBar = "unified"; SearchBar = "unified";
ShowHomeButton = false; ShowHomeButton = true;
StartDownloadsInTempDirectory = true; StartDownloadsInTempDirectory = true;
}; };
}; };