This commit is contained in:
Tasia Iso 2025-01-28 21:47:38 +01:00
parent a146468407
commit 4c8eec42df
Signed by: tasiaiso
SSH key fingerprint: SHA256:KiRjUay5C9i6objsEOIycygBHn54pDBB3Lj7fyJ0Elw
5 changed files with 15 additions and 16 deletions

View file

@ -1,4 +1,9 @@
{pkgs, lib, inputs, ...}: { {
pkgs,
lib,
inputs,
...
}: {
imports = [ imports = [
inputs.lanzaboote.nixosModules.lanzaboote inputs.lanzaboote.nixosModules.lanzaboote
]; ];

View file

@ -1,5 +1,4 @@
{pkgs, ...}: { {pkgs, ...}: {
# services.mattermost = { # services.mattermost = {
# enable = true; # enable = true;
# siteUrl = "https://mattermost.example.com"; # Set this to the URL you will be hosting the site on. # siteUrl = "https://mattermost.example.com"; # Set this to the URL you will be hosting the site on.
@ -85,7 +84,6 @@
# }; # };
# security.acme.defaults.email = "tasiaiso@proton.me"; # security.acme.defaults.email = "tasiaiso@proton.me";
# services.nginx.enable = true; # services.nginx.enable = true;
# services.nginx.virtualHosts."test.vulpecula.zone" = { # services.nginx.virtualHosts."test.vulpecula.zone" = {
# # addSSL = true; # # addSSL = true;
@ -97,18 +95,15 @@
# defaults.email = "tasiaiso@proton.me"; # defaults.email = "tasiaiso@proton.me";
# }; # };
security.acme.acceptTerms = true; security.acme.acceptTerms = true;
# services.uptime-kuma.enable = true; # services.uptime-kuma.enable = true;
# programs.adb.enable = true; # programs.adb.enable = true;
# Needed to build enry # Needed to build enry
#boot.binfmt.emulatedSystems = ["aarch64-linux"]; #boot.binfmt.emulatedSystems = ["aarch64-linux"];
# services.radicle.enable = true;
# services.radicle.enable = true;
# services.radicle.privateKeyFile = /home/tasia/.radicle/keys/radicle; # services.radicle.privateKeyFile = /home/tasia/.radicle/keys/radicle;
# services.radicle.publicKey = /home/tasia/.radicle/keys/radicle.pub; # services.radicle.publicKey = /home/tasia/.radicle/keys/radicle.pub;
# services.radicle.settings = { # services.radicle.settings = {

View file

@ -6,10 +6,9 @@
services.udev.packages = [pkgs.rtl-sdr]; services.udev.packages = [pkgs.rtl-sdr];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
sdrpp sdrpp
gqrx gqrx
rtl-sdr rtl-sdr
];
];
} }