aboutsummaryrefslogtreecommitdiff
path: root/nix-personal/hosts
diff options
context:
space:
mode:
authorAria <me@aria.rip>2023-12-12 02:03:58 +0000
committerAria <me@aria.rip>2023-12-12 02:03:58 +0000
commit35564ad41cfbda2b2a698061a2134956736744c9 (patch)
tree82093ecbeb1f1b9aac9ffa5594f339a22783f2f5 /nix-personal/hosts
parentc19dc0924481c7edf4938f5aa105f481a787a30e (diff)
delete some old stuffHEADmain
Diffstat (limited to 'nix-personal/hosts')
-rw-r--r--nix-personal/hosts/puppy.nix71
1 files changed, 0 insertions, 71 deletions
diff --git a/nix-personal/hosts/puppy.nix b/nix-personal/hosts/puppy.nix
deleted file mode 100644
index 948b243..0000000
--- a/nix-personal/hosts/puppy.nix
+++ /dev/null
@@ -1,71 +0,0 @@
-{
- modulesPath,
- lib,
- ...
-}: {
- imports = [
- (modulesPath + "/installer/scan/not-detected.nix")
- (modulesPath + "/profiles/qemu-guest.nix")
- ../profiles/common.nix
- ../profiles/landing
- ];
-
- disko.devices = {
- disk.disk1 = {
- device = lib.mkDefault "/dev/sda";
- type = "disk";
- content = {
- type = "gpt";
- partitions = {
- boot = {
- name = "boot";
- size = "1M";
- type = "EF02";
- };
- esp = {
- name = "ESP";
- size = "500M";
- type = "EF00";
- content = {
- type = "filesystem";
- format = "vfat";
- mountpoint = "/boot";
- };
- };
- swap = {
- name = "swap";
- size = "2G";
- content = {
- type = "swap";
- };
- };
- root = {
- name = "root";
- size = "100%";
- content = {
- type = "filesystem";
- format = "ext4";
- mountpoint = "/";
- mountOptions = [
- "defaults"
- ];
- };
- };
- };
- };
- };
- };
-
- boot.loader.grub = {
- # no need to set devices, disko will add all devices that have a EF02 partition to the list already
- # devices = [ ];
- efiSupport = true;
- efiInstallAsRemovable = true;
- };
-
- networking.hostName = "puppy";
- deployment = {
- targetHost = "puppy.girlth.ing";
- buildOnTarget = true;
- };
-}