totoro: init
This commit is contained in:
parent
39cf295d69
commit
002c0cafc7
2 changed files with 52 additions and 2 deletions
|
@ -15,7 +15,7 @@ let
|
|||
system = builtins.currentSystem;
|
||||
modules = [ (baseModule systemName) (args: { imports = [ lib/common.nix config ]; }) ];
|
||||
}).config.system.build.toplevel;
|
||||
systems = [ "porcorosso" "ixvm-fra01" "marukuru" "clouvider-fra01" ];
|
||||
systems = [ "porcorosso" "ixvm-fra01" "marukuru" "clouvider-fra01" "totoro" ];
|
||||
rebuilder = system: (import ./lib/rebuilder.nix (args // { system = system; }));
|
||||
systemCfgs = lib.genAttrs systems
|
||||
(name: import (./. + "/${name}"));
|
||||
|
|
50
ops/nixos/totoro/default.nix
Normal file
50
ops/nixos/totoro/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
{ depot, lib, pkgs, rebuilder, config, ... }:
|
||||
let
|
||||
inherit (depot.ops) secrets;
|
||||
in {
|
||||
imports =
|
||||
[ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> ];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
|
||||
boot.kernelModules = lib.mkAfter [ "kvm-intel" ];
|
||||
boot.kernelParams = [ "mitigations=off" ];
|
||||
|
||||
fileSystems = let
|
||||
zfs = device: {
|
||||
device = device;
|
||||
fsType = "zfs";
|
||||
};
|
||||
in {
|
||||
"/" = zfs "zboot/safe/root";
|
||||
"/nix" = zfs "zboot/local/nix";
|
||||
|
||||
"/home" = zfs "tank/safe/home";
|
||||
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/D178-4E19";
|
||||
fsType = "vfat";
|
||||
};
|
||||
};
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
nix.maxJobs = lib.mkDefault 8;
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
|
||||
# Networking!
|
||||
networking = {
|
||||
hostName = "totoro"; # Define your hostname.
|
||||
domain = "lukegb.xyz";
|
||||
hostId = "676c08c4";
|
||||
useDHCP = false;
|
||||
interfaces.enp0s31f6.useDHCP = true;
|
||||
};
|
||||
|
||||
system.stateVersion = "20.03";
|
||||
}
|
Loading…
Reference in a new issue