Added configuration for Andrej

Use librewolf instead of firefox
This commit is contained in:
Aleksandr Lebedev 2025-02-28 15:56:59 +01:00
parent c83cece584
commit 6f5a549bac
14 changed files with 5082 additions and 6 deletions

24
disko/ext4.nix Normal file
View file

@ -0,0 +1,24 @@
{ device, mountpoint ? "/run/extraDrive" }:
{
disko.devices = {
disk = {
"${device}" = {
inherit device;
type = "disk";
content = {
type = "gpt";
partitions = {
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
inherit mountpoint;
};
};
};
};
};
};
};
}