fmt
This commit is contained in:
parent
a146468407
commit
4c8eec42df
|
@ -1,4 +1,9 @@
|
||||||
{pkgs, lib, inputs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.lanzaboote.nixosModules.lanzaboote
|
inputs.lanzaboote.nixosModules.lanzaboote
|
||||||
];
|
];
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -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
|
||||||
|
];
|
||||||
];
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue