Fix basic elysia-clarki build
This commit is contained in:
parent
7993d94ded
commit
238b215569
|
@ -119,7 +119,7 @@
|
|||
];
|
||||
};
|
||||
|
||||
nixosConfiguration.elysia-clarki = nixpkgs.lib.nixosSystem {
|
||||
nixosConfigurations.elysia-clarki = nixpkgs.lib.nixosSystem {
|
||||
inherit system; # <-- fix this
|
||||
modules = [
|
||||
self.nixosModules.nixUnstable
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue