mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-22 12:26:06 -07:00
Compare commits
No commits in common. "70024a7a9b591c08364296dfe4686bbd6b29bff3" and "746e538584f738568d0b98cd2629d023455feb92" have entirely different histories.
70024a7a9b
...
746e538584
@ -19,6 +19,7 @@
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
lib = nixpkgs.lib;
|
||||
user = "tstarr";
|
||||
|
@ -19,7 +19,6 @@
|
||||
|
||||
# Add non-free packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.config.permittedInsecurePackages = [ "electron-25.9.0" "openssl-1.1.1w" ];
|
||||
nixpkgs.overlays = import ../../lib/overlays.nix;
|
||||
|
||||
# Hardware options
|
||||
|
@ -18,7 +18,6 @@
|
||||
|
||||
# Add non-free packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.config.permittedInsecurePackages = [ "electron-25.9.0" "openssl-1.1.1w" ];
|
||||
nixpkgs.overlays = import ../../lib/overlays.nix;
|
||||
|
||||
# Use zen kernel
|
||||
|
@ -9,7 +9,6 @@
|
||||
./share.nix
|
||||
./rss.nix
|
||||
./home-assistant
|
||||
./gitea.nix
|
||||
];
|
||||
|
||||
nix = {
|
||||
@ -26,7 +25,6 @@
|
||||
|
||||
# Add non-free packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.config.permittedInsecurePackages = [ "openssl-1.1.1w" ];
|
||||
nixpkgs.overlays = import ../../lib/overlays.nix;
|
||||
|
||||
# Use normal kernel
|
||||
@ -123,9 +121,6 @@
|
||||
"media.tstarr.us" = (SSL // {
|
||||
locations."/".proxyPass = "http://localhost:8096/";
|
||||
});
|
||||
"git.tstarr.us" = (SSL // {
|
||||
locations."/".proxyPass = "http://localhost:3001/";
|
||||
});
|
||||
"vault.tstarr.us" = (SSL // {
|
||||
locations."/".proxyPass = "http://localhost:5000/";
|
||||
extraConfig = ''
|
||||
|
@ -1,22 +0,0 @@
|
||||
{ config, lib, pkgs, user, ... }:
|
||||
{
|
||||
services.gitea = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
dump = {
|
||||
enable = true;
|
||||
interval = "23:05";
|
||||
};
|
||||
settings.service = {
|
||||
DISABLE_REGISTRATION = true;
|
||||
};
|
||||
settings.server = {
|
||||
DOMAIN = "git.tstarr.us";
|
||||
HTTP_PORT = 3001;
|
||||
ROOT_URL = "https://git.tstarr.us";
|
||||
};
|
||||
#settings.actions = {
|
||||
# ENABLED = true;
|
||||
#};
|
||||
};
|
||||
}
|
@ -52,7 +52,6 @@ in {
|
||||
{ "toplevel_name" = "Bookmarks"; }
|
||||
{ "name" = "Daily"; "children" = [
|
||||
{ "url" = "https://rss.tstarr.us"; name = "Miniflux"; }
|
||||
{ "url" = "https://git.tstarr.us"; name = "Gitea"; }
|
||||
{ "url" = "https://media.tstarr.us/web/index.html#!/home.html"; name = "Jellyfin"; }
|
||||
{ "url" = "https://home.tstarr.us"; name = "Home Assistant"; }
|
||||
{ "url" = "https://share.tstarr.us"; name = "Share (dufs)"; }
|
||||
|
@ -5,6 +5,9 @@ let
|
||||
in {
|
||||
options.modules.devel.notes.enable = lib.mkEnableOption "notes";
|
||||
config = lib.mkIf cfg.enable {
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"electron-25.9.0"
|
||||
];
|
||||
environment.systemPackages = with pkgs; [
|
||||
pandoc
|
||||
gollum
|
||||
|
Loading…
x
Reference in New Issue
Block a user