Added configuration for Andrej
Use librewolf instead of firefox
This commit is contained in:
parent
c83cece584
commit
6f5a549bac
14 changed files with 5082 additions and 6 deletions
24
disko/ext4.nix
Normal file
24
disko/ext4.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue