run nix fmt

This commit is contained in:
jopejoe1 2024-07-10 23:02:54 +02:00
parent eab8e4b1d8
commit d5cbe31c02
61 changed files with 1299 additions and 830 deletions

View file

@ -1,4 +1,9 @@
{ pkgs, config, nixos-hardware, ... }:
{
pkgs,
config,
nixos-hardware,
...
}:
{
imports = [
@ -10,7 +15,9 @@
];
jopejoe1 = {
audio = { enable = true; };
audio = {
enable = true;
};
bluetooth.enable = true;
local.enable = true;
nix.enable = true;
@ -60,9 +67,7 @@
settings = {
server = {
systemTrayEnabled = true;
extensionRepos = [
"https://raw.githubusercontent.com/keiyoushi/extensions/repo/index.min.json"
];
extensionRepos = [ "https://raw.githubusercontent.com/keiyoushi/extensions/repo/index.min.json" ];
webUIEnabled = true;
initialOpenInBrowserEnabled = true;
webUIInterface = "browser";
@ -103,6 +108,10 @@
networking.hosts = {
"192.168.88.251" = [ "wiki.it3" ];
"192.168.88.252" = [ "pi400" ];
"127.0.0.1" = [ "local" "rss.local" "manga.local" ];
"127.0.0.1" = [
"local"
"rss.local"
"manga.local"
];
};
}