Fix basic elysia-clarki build

This commit is contained in:
Malte Tammena 2021-06-15 17:33:35 +02:00
parent 7993d94ded
commit 238b215569
2 changed files with 1 additions and 13 deletions

View file

@ -119,7 +119,7 @@
];
};
nixosConfiguration.elysia-clarki = nixpkgs.lib.nixosSystem {
nixosConfigurations.elysia-clarki = nixpkgs.lib.nixosSystem {
inherit system; # <-- fix this
modules = [
self.nixosModules.nixUnstable

View file

@ -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";