mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
13 lines
276 B
Nix
13 lines
276 B
Nix
{ config, pkgs, lib, ... }: {
|
|
services.nix-daemon.enable = true;
|
|
nix = {
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
package = pkgs.nixFlakes;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
awscli
|
|
];
|
|
system.stateVersion = 4;
|
|
}
|