From dc5fbc56786601d3e04ae4425c348f479eca54ab Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Thu, 22 Oct 2020 04:54:52 -0400 Subject: Delete old nixos configs --- nixos/aji.nix | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 nixos/aji.nix (limited to 'nixos/aji.nix') diff --git a/nixos/aji.nix b/nixos/aji.nix deleted file mode 100644 index abda9f8..0000000 --- a/nixos/aji.nix +++ /dev/null @@ -1,49 +0,0 @@ -{ config, pkgs, hardware, ... }: - -{ - imports = [ - ./configuration.nix - ]; - - # Use the gummiboot efi boot loader. - boot.loader.systemd-boot.enable = true; - boot.loader.timeout = 0; - boot.loader.efi.canTouchEfiVariables = true; - boot.initrd.luks.devices = [ - { - device = "/dev/sda2"; - name = "crypt"; - preLVM = true; - allowDiscards = true; - } - ]; - boot.kernelModules = ["tp_smapi" "thinkpad_acpi" "fbcon" "i915"]; - boot.kernelParams = ["quiet" "acpi_osi=\"!Windows 2012\""]; - boot.extraModulePackages = [config.boot.kernelPackages.tp_smapi]; - boot.extraModprobeConfig = '' - options i915 enable_rc6=1 - ''; - - networking.hostName = "aji"; - - fileSystems."/" = { - mountPoint = "/"; - device = "/dev/mapper/cryptvg-root"; - fsType = "btrfs"; - options = ["subvol=aji-root" "discard" "compress=lzo"]; - }; - swapDevices = - [ { device = "/dev/mapper/cryptvg-swap"; } - ]; - - services.tlp.enable = true; - services.tlp.extraConfig = '' - # Needed for either SSD or btrfs. - SATA_LINKPWR_ON_BAT=max_performance - ''; - - services.xserver.xkbModel = "thinkpad60"; - - # The NixOS release to be compatible with for stateful data such as databases. - system.stateVersion = "16.03"; -} -- cgit v1.2.3