disko config
This commit is contained in:
parent
77e7b32d28
commit
3a444bb515
54
modules/nixos/system/disk/default.nix
Normal file
54
modules/nixos/system/disk/default.nix
Normal file
@ -0,0 +1,54 @@
|
||||
{ config, lib, namespace, ... }:
|
||||
let
|
||||
inherit (lib) mkIf mkOpt types;
|
||||
|
||||
cfg = config.${namespace}.system.disk;
|
||||
in
|
||||
{
|
||||
options.${namespace}.system.disk = {
|
||||
enable = lib.mkEnableOption "Disko Configuration";
|
||||
diskPath = mkOpt types.str null "Device path for the main disk";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
disko.devices = {
|
||||
disk = {
|
||||
main = {
|
||||
type = "disk";
|
||||
device = cfg.diskPath;
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
boot = {
|
||||
size = "512M";
|
||||
type = "EF00";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "vfat";
|
||||
mountpoint = "/boot";
|
||||
mountOptions = [ "umask=0077" ];
|
||||
};
|
||||
};
|
||||
root = {
|
||||
size = "100%";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "ext4";
|
||||
mountpoint = "/";
|
||||
};
|
||||
};
|
||||
swap = {
|
||||
size = "32G";
|
||||
content = {
|
||||
type = "swap";
|
||||
discardPolicy = "both";
|
||||
resumeDevice = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
@ -6,7 +6,12 @@ in
|
||||
reichard = {
|
||||
system = {
|
||||
boot = enabled;
|
||||
networking = enabled;
|
||||
networking = enabled; # TODO - Network Config
|
||||
disk = {
|
||||
enable = true;
|
||||
diskID = "/dev/xvda";
|
||||
};
|
||||
# TODO - Xen Guest
|
||||
};
|
||||
|
||||
services = {
|
||||
@ -22,7 +27,7 @@ in
|
||||
|
||||
networking = {
|
||||
defaultGateway = {
|
||||
address = "10.0.50.130";
|
||||
address = "10.0.50.254";
|
||||
interface = "enX0";
|
||||
};
|
||||
interfaces.enX0.ipv4.addresses = [{
|
||||
|
Loading…
x
Reference in New Issue
Block a user