wip: dnsc-machine setup
This commit is contained in:
parent
93cedd20de
commit
b11b835687
4 changed files with 102 additions and 0 deletions
|
|
@ -17,6 +17,8 @@
|
||||||
ip-whitelist.url = "github:Oak-Digital/nixos-ip-whitelist-firewall";
|
ip-whitelist.url = "github:Oak-Digital/nixos-ip-whitelist-firewall";
|
||||||
nix-homebrew.url = "github:zhaofengli/nix-homebrew";
|
nix-homebrew.url = "github:zhaofengli/nix-homebrew";
|
||||||
zellij-switch.url = "github:mostafaqanbaryan/zellij-switch";
|
zellij-switch.url = "github:mostafaqanbaryan/zellij-switch";
|
||||||
|
zen-browser.url = "github:0xc000022070/zen-browser-flake";
|
||||||
|
firefox-addons.url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
|
|
|
||||||
|
|
@ -46,8 +46,10 @@
|
||||||
../modules/nvim
|
../modules/nvim
|
||||||
../modules/ghostty
|
../modules/ghostty
|
||||||
../modules/fish
|
../modules/fish
|
||||||
|
../modules/zellij
|
||||||
../modules/mpv
|
../modules/mpv
|
||||||
../modules/firefox
|
../modules/firefox
|
||||||
|
../modules/zen
|
||||||
../modules/wm/swaync
|
../modules/wm/swaync
|
||||||
../modules/wm/cliphist
|
../modules/wm/cliphist
|
||||||
../modules/wm/awww
|
../modules/wm/awww
|
||||||
|
|
|
||||||
|
|
@ -57,6 +57,7 @@
|
||||||
users = {
|
users = {
|
||||||
dennis = {
|
dennis = {
|
||||||
imports = [
|
imports = [
|
||||||
|
inputs.zen-browser.homeModules.beta
|
||||||
inputs.ironbar.homeManagerModules.default
|
inputs.ironbar.homeManagerModules.default
|
||||||
../../home/linux.nix
|
../../home/linux.nix
|
||||||
];
|
];
|
||||||
|
|
|
||||||
97
modules/zen/default.nix
Normal file
97
modules/zen/default.nix
Normal file
|
|
@ -0,0 +1,97 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
system,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.zen-browser = {
|
||||||
|
enable = true;
|
||||||
|
nativeMessagingHosts = [ pkgs.firefoxpwa ];
|
||||||
|
policies = {
|
||||||
|
AutofillAddressEnabled = true;
|
||||||
|
AutofillCreditCardEnabled = false;
|
||||||
|
DisableAppUpdate = true;
|
||||||
|
DisableFeedbackCommands = true;
|
||||||
|
DisableFirefoxStudies = true;
|
||||||
|
DisablePocket = true;
|
||||||
|
DisableTelemetry = true;
|
||||||
|
DontCheckDefaultBrowser = true;
|
||||||
|
NoDefaultBookmarks = true;
|
||||||
|
OfferToSaveLogins = false;
|
||||||
|
EnableTrackingProtection = {
|
||||||
|
Value = true;
|
||||||
|
Locked = true;
|
||||||
|
Cryptomining = true;
|
||||||
|
Fingerprinting = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
profiles.default = {
|
||||||
|
containersForce = true;
|
||||||
|
containers = {
|
||||||
|
Personal = {
|
||||||
|
color = "purple";
|
||||||
|
icon = "fingerprint";
|
||||||
|
id = 1;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
spacesForce = true;
|
||||||
|
spaces =
|
||||||
|
let
|
||||||
|
containers = config.programs.zen-browser.profiles."default".containers;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
"Space" = {
|
||||||
|
id = "c6de089c-410d-4206-961d-ab11f988d40a";
|
||||||
|
position = 1000;
|
||||||
|
container = containers."Personal".id;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
extensions.packages = with inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}; [
|
||||||
|
ublock-origin
|
||||||
|
dearrow
|
||||||
|
"bitwarden-2025.11.2"
|
||||||
|
"sponsorblock-6.1.0"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
xdg.mimeApps =
|
||||||
|
let
|
||||||
|
value =
|
||||||
|
let
|
||||||
|
zen-browser = inputs.zen-browser.packages.${system}.beta; # or twilight
|
||||||
|
in
|
||||||
|
zen-browser.meta.desktopFileName;
|
||||||
|
|
||||||
|
associations = builtins.listToAttrs (
|
||||||
|
map
|
||||||
|
(name: {
|
||||||
|
inherit name value;
|
||||||
|
})
|
||||||
|
[
|
||||||
|
"application/x-extension-shtml"
|
||||||
|
"application/x-extension-xhtml"
|
||||||
|
"application/x-extension-html"
|
||||||
|
"application/x-extension-xht"
|
||||||
|
"application/x-extension-htm"
|
||||||
|
"x-scheme-handler/unknown"
|
||||||
|
"x-scheme-handler/mailto"
|
||||||
|
"x-scheme-handler/chrome"
|
||||||
|
"x-scheme-handler/about"
|
||||||
|
"x-scheme-handler/https"
|
||||||
|
"x-scheme-handler/http"
|
||||||
|
"application/xhtml+xml"
|
||||||
|
"application/json"
|
||||||
|
"text/plain"
|
||||||
|
"text/html"
|
||||||
|
]
|
||||||
|
);
|
||||||
|
in
|
||||||
|
{
|
||||||
|
associations.added = associations;
|
||||||
|
defaultApplications = associations;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue