From 238b215569bb72028c883be5f177ff051fe08432 Mon Sep 17 00:00:00 2001 From: Malte Tammena Date: Tue, 15 Jun 2021 17:33:35 +0200 Subject: [PATCH] Fix basic elysia-clarki build --- flake.nix | 2 +- system/elysia-clarki.nix | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/flake.nix b/flake.nix index 58dadef..4a4ffef 100644 --- a/flake.nix +++ b/flake.nix @@ -119,7 +119,7 @@ ]; }; - nixosConfiguration.elysia-clarki = nixpkgs.lib.nixosSystem { + nixosConfigurations.elysia-clarki = nixpkgs.lib.nixosSystem { inherit system; # <-- fix this modules = [ self.nixosModules.nixUnstable diff --git a/system/elysia-clarki.nix b/system/elysia-clarki.nix index 292ce0d..26c46de 100644 --- a/system/elysia-clarki.nix +++ b/system/elysia-clarki.nix @@ -1,22 +1,10 @@ { config, pkgs, ... }: { - imports = - [ - ./hardware-configuration.nix - ]; - boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.supportedFilesystems = [ "zfs" ]; -nix = { - package = pkgs.nixUnstable; - extraOptions = '' - experimental-features = nix-command flakes - ''; - }; - time.timeZone = "Europe/Berlin"; networking.hostName = "elysia-clarki";