This commit is contained in:
Invariantspace 2024-03-17 12:40:09 -07:00
parent 73cd77b6c8
commit 843b937056
5 changed files with 41 additions and 44 deletions

View file

@ -6,13 +6,10 @@
{
# Configuration boot
boot = {
initrd.systemd.enable = true;
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
timeout = 0;
};
boot.loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
timeout = 0;
};
# Change secrets file

View file

@ -6,6 +6,7 @@ let
in
{
home-manager.users.${usr}.home.packages = with jovianPkgs; [
lutris
(retroarch.override {
cores = with libretro; [
pcsx2
@ -15,7 +16,10 @@ in
# yuzu
];
jovian = {
devices.steamdeck.enable = true;
devices.steamdeck = {
enable = true;
autoUpdate = true;
};
steam = {
enable = true;
autoStart = true;

View file

@ -4,12 +4,8 @@
networking = {
firewall.trustedInterfaces = [ config.services.tailscale.interfaceName ];
hostId = "74247225";
networkmanager = {
enable = true;
wifi.backend = "iwd";
};
networkmanager.enable = true;
nftables.enable = true;
wireless.iwd.enable = true;
};
services.openssh.enable = true;
}