diff --git a/.gitignore b/.gitignore index 8de49b64..4092b4d0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ result* hardware-configuration.nix +#/configuration.nix diff --git a/configuration.nix b/configuration.nix deleted file mode 120000 index a8829c8e..00000000 --- a/configuration.nix +++ /dev/null @@ -1 +0,0 @@ -hosts/jokum/configuration.nix \ No newline at end of file diff --git a/hardware-configuration.nix b/hardware-configuration.nix deleted file mode 100644 index dfa5e4ab..00000000 --- a/hardware-configuration.nix +++ /dev/null @@ -1,28 +0,0 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: - -{ - imports = - [ (modulesPath + "/profiles/qemu-guest.nix") - ]; - - boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { device = "/dev/disk/by-uuid/1a8bf91a-5948-40c2-a9fd-7a33e46fa441"; - fsType = "ext4"; - }; - - fileSystems."/data" = - { device = "/dev/disk/by-uuid/c812e204-b998-4ec5-9f26-29c5808ed6ba"; - fsType = "ext4"; - }; - - swapDevices = [ ]; - -}