update oren to new common flake modules

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-03-18 15:43:08 -05:00
parent 02b89592d1
commit ec7b724091
3 changed files with 67 additions and 77 deletions

View file

@ -34,6 +34,23 @@
(
{ config, pkgs, ... }:
{
programs = {
steam.enable = true;
};
environment.systemPackages = with pkgs; [
lua
qdirstat
steam
];
# Also allow this key to work for root user, this will let us use this as a remote builder easier
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJN2nsLmAlF6zj5dEBkNSJaqcCya+aB6I0imY8Q5Ew0S nix2lio"
];
# Allow emulation of aarch64-linux binaries for cross compiling
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
ringofstorms_common = {
systemName = configuration_name;
boot.systemd.enable = true;
@ -102,23 +119,6 @@
};
};
programs = {
steam.enable = true;
};
environment.systemPackages = with pkgs; [
lua
qdirstat
# qflipper
steam
];
# Also allow this key to work for root user, this will let us use this as a remote builder easier
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJN2nsLmAlF6zj5dEBkNSJaqcCya+aB6I0imY8Q5Ew0S nix2lio"
];
# Allow emulation of aarch64-linux binaries for cross compiling
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
}
)
];