summaryrefslogtreecommitdiff
path: root/hosts/fscusat/hardware-configuration.nix
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-03-08 10:50:28 +0530
committersinanmohd <sinan@sinanmohd.com>2024-03-08 10:52:52 +0530
commitcd942d253bda8f511fdb921ea29f69f382a9368e (patch)
tree2c7aac5f66e5b614ecdd0871df23432bae4dc6db /hosts/fscusat/hardware-configuration.nix
parent2abeb90fbff1d33aadfec37ce80a6bc4d3551661 (diff)
repo: restructure source tree
Diffstat (limited to 'hosts/fscusat/hardware-configuration.nix')
-rw-r--r--hosts/fscusat/hardware-configuration.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/hosts/fscusat/hardware-configuration.nix b/hosts/fscusat/hardware-configuration.nix
deleted file mode 100644
index 8bb54ed..0000000
--- a/hosts/fscusat/hardware-configuration.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ modulesPath, ... }:
-
-{
- imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
-
- boot = {
- loader = {
- systemd-boot.enable = true;
- efi.canTouchEfiVariables = true;
- };
-
- initrd.availableKernelModules = [
- "ata_piix"
- "uhci_hcd"
- "virtio_pci"
- "virtio_scsi"
- "sd_mod"
- "sr_mod"
- ];
- };
-
- fileSystems = {
- "/" = {
- device = "/dev/disk/by-uuid/547074b4-4d61-4968-a94f-4f97e1fa2c3c";
- fsType = "ext4";
- };
- "/boot" = {
- device = "/dev/disk/by-uuid/C634-FE6A";
- fsType = "vfat";
- };
- };
-}