Many things:

- updated inputs
- added new host `hs`
- workflows to check and release new host `hs`
- chrome instead of chromium (if not on aarch64)
- fixed bud configuration error for `pc` host
- fixed Emacs purescript format on save
This commit is contained in:
Andrea Ciceri 2021-11-13 19:01:43 +01:00
parent 4e8adcfafb
commit ecb7bc935b
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
13 changed files with 125 additions and 72 deletions

View file

@ -0,0 +1,36 @@
{ config, lib, pkgs, profiles, ... }:
{
imports = with profiles; [ sshd ];
boot = {
initrd.availableKernelModules = [ "ohci_pci" "ehci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
loader.grub = pkgs.lib.mkForce {
enable = true;
version = 2;
device = "/dev/disk/by-label/nixos";
};
};
fileSystems = {
"/" =
{
device = "/dev/disk/by-label/nixos";
fsType = "btrfs";
};
"/mnt/archivio" = {
device = "/dev/disk/by-label/archivio";
fsType = "ext4";
};
"/mnt/film" = {
device = "/dev/disk/by-label/film";
fsType = "ext4";
};
};
swapDevices =
[{ device = "/dev/disk/by-label/swap"; }];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
}

9
hosts/hs/default.nix Normal file
View file

@ -0,0 +1,9 @@
{ suites, ... }:
{
imports = [
./configuration.nix
] ++ suites.base;
bud.enable = true;
bud.localFlakeClone = "/home/ccr/fleet";
}

View file

@ -5,5 +5,5 @@
] ++ suites.base;
bud.enable = true;
bud.localFlakeClone = "/home/andrea/fleet";
bud.localFlakeClone = "/home/ccr/fleet";
}