hosts: remove disko

This commit is contained in:
notohh 2024-05-13 11:15:04 -04:00
parent d7e3f642ae
commit 8ad2328160
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 0 additions and 36 deletions

View file

@ -1,33 +0,0 @@
{
disko.devices = {
disk = {
sda = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
end = "500M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
name = "root";
end = "-0";
content = {
type = "filesystem";
format = "bcachefs";
mountpoint = "/";
};
};
};
};
};
};
};
}

View file

@ -6,7 +6,6 @@
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
./disko-config.nix
];
boot = {

View file

@ -11,7 +11,6 @@
atticModule = inputs.attic.nixosModules.atticd;
nurModule = inputs.nur.nixosModules.nur;
t480Module = inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480;
diskoModule = inputs.disko.nixosModules.default;
in {
tsuki = nixosSystem {
inherit specialArgs;
@ -40,7 +39,6 @@
sopsModule
hmModule
t480Module
diskoModule
{
home-manager = {
useGlobalPkgs = true;