Compare commits

...

2 commits

Author SHA1 Message Date
b2f610b2ce
feat(browser): add keepasxc extension 2024-10-20 14:23:50 +00:00
330823cd68
chore(marr): add disko config 2024-10-20 13:09:02 +00:00
4 changed files with 70 additions and 1 deletions

View file

@ -10,6 +10,7 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./home.nix ./home.nix
./disko.nix
]; ];
modules = { modules = {

38
hosts/marr/disko.nix Normal file
View file

@ -0,0 +1,38 @@
{
disko.devices = {
disk.builtin = {
device = "/dev/nvme0n1";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = mkBoot "1G";
luks = {
size = "100%";
content = {
type = "luks";
name = "crypt";
settings = {
keyFile = "/tmp/secret.key";
allowDiscards = true;
};
content = {
type = "lvm_pv";
vg = "pool";
};
};
};
};
};
};
lvm_vg = {
pool = {
type = "lvm_vg";
lvs = {
swap = mkSwap "32G";
root = mkRoot "100%" "ext4";
};
};
};
};
}

View file

@ -72,7 +72,6 @@ lib.mkIf config.programs.firefox.enable {
AutofillCreditCardEnabled = false; AutofillCreditCardEnabled = false;
AutofillAddressEnabled = false; AutofillAddressEnabled = false;
# Check about:support for extension/add-on ID strings. # Check about:support for extension/add-on ID strings.
# WARNING: Does not seem to install extension, i.e useless
ExtensionSettings = ExtensionSettings =
let let
extension = shortId: uuid: { extension = shortId: uuid: {
@ -88,6 +87,7 @@ lib.mkIf config.programs.firefox.enable {
(extension "firefox-translations" "firefox-translations-addon@mozilla.org") (extension "firefox-translations" "firefox-translations-addon@mozilla.org")
(extension "private-relay" "private-relay@firefox.com") (extension "private-relay" "private-relay@firefox.com")
(extension "decentraleyes" "jid1-BoFifL9Vbdl2zQ@jetpack") (extension "decentraleyes" "jid1-BoFifL9Vbdl2zQ@jetpack")
(extension "keepassxc-browser" "keepassxc-browser@keepassxc.org")
]; ];
FirefoxHome = { FirefoxHome = {
Search = true; Search = true;

View file

@ -79,4 +79,34 @@ in
inherit (lib.strings) sanitizeDerivationName; inherit (lib.strings) sanitizeDerivationName;
in in
str: (sanitizeDerivationName (lib.toLower str)); str: (sanitizeDerivationName (lib.toLower str));
dikso = {
mkBoot = size: {
size = size;
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
mkSwap = size: {
size = "32G";
content = {
type = "swap";
randomEncryption = true;
priority = 100;
};
};
mkRoot = size: format: {
inherit size;
content = {
inherit format;
type = "filesystem";
mountpoint = "/";
mountOptions = [ "defaults" ];
};
};
};
} }