Install fwupd

This commit is contained in:
fleaz 2024-05-07 19:09:01 +02:00
parent a440429c6d
commit 9e5ad4f304
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
2 changed files with 11 additions and 3 deletions

3
modules/fwupd.nix Normal file
View file

@ -0,0 +1,3 @@
{
services.fwupd.enable = true;
}

View file

@ -1,6 +1,6 @@
{pkgs, config, ...}:
{ pkgs, config, ... }:
let
consoleFont = hiDPI : if hiDPI then "Lat2-Terminus16" else "Lat2-Terminus20";
consoleFont = hiDPI: if hiDPI then "Lat2-Terminus16" else "Lat2-Terminus20";
in
{
imports = [
@ -23,6 +23,7 @@ in
../modules/gc.nix
../modules/sway.nix
../modules/nixld.nix
../modules/fwupd.nix
../secrets/remote-builder.nix
../users/fleaz.nix
@ -59,7 +60,11 @@ in
# Look mum, I'm using all the new shiny stuff!
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# TMP
networking.firewall = {
allowedTCPPorts = [ 3000 ];
};
networking.extraHosts = ''
'';
}