mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
d27a09b0ab
Signed-off-by: Magic_RB <magic_rb@redalder.org>
47 lines
1,008 B
Nix
47 lines
1,008 B
Nix
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
{ inputs, lib', config, ... }:
|
|
let
|
|
inherit (lib')
|
|
flip
|
|
mapAttrs
|
|
singleton
|
|
mkForce;
|
|
|
|
config' = config;
|
|
in
|
|
{
|
|
flake.nixosConfigurations.gooseberry = inputs.nixpkgs.lib.nixosSystem {
|
|
system = "aarch64-linux";
|
|
|
|
specialArgs = {
|
|
config' = config';
|
|
inputs' = inputs;
|
|
secret = lib'.loadSecrets inputs.secret;
|
|
};
|
|
|
|
modules = singleton
|
|
({ pkgs, config, ... }:
|
|
{
|
|
imports = [
|
|
./bootloader.nix
|
|
./filesystems.nix
|
|
./users.nix
|
|
./nixpkgs.nix
|
|
./networking.nix
|
|
../../common/remote_access.nix
|
|
|
|
inputs.disko.nixosModules.disko
|
|
];
|
|
|
|
environment.systemPackages = [ pkgs.ipmitool ];
|
|
|
|
boot.initrd.systemd.enable = true;
|
|
|
|
time.timeZone = "Europe/Amsterdam";
|
|
system.stateVersion = "23.05";
|
|
});
|
|
};
|
|
}
|