This commit is contained in:
alydev 2025-10-21 16:26:35 +10:00
parent 69fa5d2ee0
commit bdb85b5df4
2 changed files with 12 additions and 7 deletions

View file

@ -22,6 +22,17 @@
nix-direnv.enable = true;
};
programs.firefox = lib.mkIf gui {
enable = true;
profiles.default = {
extensions = {
packages = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin bitwarden darkreader indie-wiki-buddy sponsorblock
];
};
};
};
programs.git = {
enable = true;
userName = "alydev";

View file

@ -4,16 +4,10 @@
laptop = { config = '' config /home/aly/.secrets/laptop.ovpn ''; };
};
fileSystems."/mnt/storage" = {
device = "aly@vpn.aly.pet:/mnt/storage";
device = "aly@lan.aly.pet:/mnt/storage";
fsType = "sshfs";
options = ["nodev,noatime,allow_other,IdentityFile=/home/aly/.ssh/id_ed25519"];
};
programs.firefox = {
enable = true;
};
services.gnome = {
gnome-browser-connector.enable = true;
};
services.logind = {
lidSwitch = "suspend";
lidSwitchDocked = "ignore";