summaryrefslogtreecommitdiff
path: root/machines/z/configuration.nix
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-02-01 18:40:39 +0530
committerGitHub <noreply@github.com>2024-02-01 18:40:39 +0530
commit88cc3e7e0765b5dd11b06db442ad46536342bba5 (patch)
treed3b1c7b0d54ef3c2274d64967a3bcd2818c03c8e /machines/z/configuration.nix
parent01bb0877c285383fd2857920048bd2576f4d31e9 (diff)
Updates (#1)
* . * . * . * . * . * . * . * . * . * . * update * . * temp * . * . * . * . * . * . * . * . * . * . * . * . * temp * . * . * . * update
Diffstat (limited to 'machines/z/configuration.nix')
-rw-r--r--machines/z/configuration.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/machines/z/configuration.nix b/machines/z/configuration.nix
deleted file mode 100644
index 5af5c58..0000000
--- a/machines/z/configuration.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib, inputs, ... }:
-
-{
- imports = [
- ./hardware-configuration.nix
- inputs.home-manager.nixosModules.default
- ] ++ (map (path: ../../modules/${path}) [
- "global.nix"
- "compromyse.nix"
- ]);
-
- boot.loader.systemd-boot.enable = true;
- boot.loader.efi.canTouchEfiVariables = true;
- boot.loader.efi.efiSysMountPoint = "/boot/efi";
-
- boot.extraModprobeConfig = "options kvm_intel nested=1";
-
- fileSystems."/data" = {
- device = "/dev/sda";
- fsType = "ext4";
- };
-
- networking.hostName = "z";
-
- home-manager.users.compromyse = import ./home.nix;
-}