Compare commits
3 Commits
db9139a08c
...
a2458211e3
Author | SHA1 | Date | |
---|---|---|---|
a2458211e3 | |||
1f15bf221b | |||
908c352932 |
@ -34,11 +34,6 @@
|
|||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
goatcounter = {
|
|
||||||
url = "github:asmir-abdulahovic/goatcounter-flake";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
@ -56,7 +51,6 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs @ {
|
outputs = inputs @ {
|
||||||
goatcounter,
|
|
||||||
home-manager,
|
home-manager,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
nix-xilinx,
|
nix-xilinx,
|
||||||
@ -166,7 +160,6 @@
|
|||||||
{nix.registry.nixpkgs.flake = nixpkgs;}
|
{nix.registry.nixpkgs.flake = nixpkgs;}
|
||||||
./magpie/configuration.nix
|
./magpie/configuration.nix
|
||||||
./magpie/hardware-configuration.nix
|
./magpie/hardware-configuration.nix
|
||||||
goatcounter.nixosModules.goatcounter
|
|
||||||
simple-nixos-mailserver.nixosModule
|
simple-nixos-mailserver.nixosModule
|
||||||
sops-nix.nixosModules.sops
|
sops-nix.nixosModules.sops
|
||||||
(builtins.toPath "${nixpkgs}/nixos/modules/profiles/qemu-guest.nix")
|
(builtins.toPath "${nixpkgs}/nixos/modules/profiles/qemu-guest.nix")
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
project-cloud,
|
project-cloud,
|
||||||
goatcounter,
|
|
||||||
nvim,
|
nvim,
|
||||||
system,
|
system,
|
||||||
...
|
...
|
||||||
@ -22,18 +21,18 @@
|
|||||||
boot.loader.systemd-boot.configurationLimit = 2;
|
boot.loader.systemd-boot.configurationLimit = 2;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
boot.kernelParams = ["ip=dhcp"];
|
||||||
boot.kernel.sysctl = {
|
boot.kernel.sysctl = {
|
||||||
"net.core.default_qdisc" = "fq";
|
"net.core.default_qdisc" = "fq";
|
||||||
"net.ipv4.tcp_congestion_control" = "bbr";
|
"net.ipv4.tcp_congestion_control" = "bbr";
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.initrd = {
|
boot.initrd = {
|
||||||
systemd.enable = true;
|
|
||||||
compressor = "zstd";
|
compressor = "zstd";
|
||||||
availableKernelModules = ["virtio-pci"];
|
availableKernelModules = ["virtio-pci"];
|
||||||
|
systemd.enable = true;
|
||||||
network = {
|
network = {
|
||||||
enable = true;
|
enable = true;
|
||||||
udhcpc.enable = true;
|
|
||||||
ssh = {
|
ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
hostKeys = [/etc/ssh_dummy_ed25519_key];
|
hostKeys = [/etc/ssh_dummy_ed25519_key];
|
||||||
@ -57,7 +56,6 @@
|
|||||||
fzf
|
fzf
|
||||||
fzy
|
fzy
|
||||||
git
|
git
|
||||||
goatcounter.packages.${system}.goatcounter
|
|
||||||
nvim.packages.${system}.nvim
|
nvim.packages.${system}.nvim
|
||||||
htop-vim
|
htop-vim
|
||||||
nvim
|
nvim
|
||||||
@ -119,14 +117,9 @@
|
|||||||
|
|
||||||
services.goatcounter = {
|
services.goatcounter = {
|
||||||
enable = true;
|
enable = true;
|
||||||
environmentFile = "/var/lib/goatcounter.env";
|
port = 8002;
|
||||||
extraArgs = ["-listen='*:8002'" "-tls=proxy"];
|
proxy = true;
|
||||||
database = {
|
address = "127.0.0.1";
|
||||||
backend = "sqlite";
|
|
||||||
name = "goatcounter";
|
|
||||||
user = "goatcounter";
|
|
||||||
automigrate = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nextcloud = {
|
services.nextcloud = {
|
||||||
@ -176,12 +169,14 @@
|
|||||||
root = "${project-cloud.packages.${system}.default}/public";
|
root = "${project-cloud.packages.${system}.default}/public";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
virtualHosts.${config.services.nextcloud.hostName} = {
|
virtualHosts.${config.services.nextcloud.hostName} = {
|
||||||
quic = true;
|
quic = true;
|
||||||
http3 = true;
|
http3 = true;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
virtualHosts."miniflux.project-cloud.net" = {
|
virtualHosts."miniflux.project-cloud.net" = {
|
||||||
quic = true;
|
quic = true;
|
||||||
@ -313,10 +308,12 @@
|
|||||||
sopsFile = ./secrets/gitea_db.yaml;
|
sopsFile = ./secrets/gitea_db.yaml;
|
||||||
owner = config.users.users.gitea.name;
|
owner = config.users.users.gitea.name;
|
||||||
};
|
};
|
||||||
|
/*
|
||||||
"nextcloud_admin" = {
|
"nextcloud_admin" = {
|
||||||
sopsFile = ./secrets/nextcloud_admin.yaml;
|
sopsFile = ./secrets/nextcloud_admin.yaml;
|
||||||
owner = config.users.users.nextcloud.name;
|
owner = config.users.users.nextcloud.name;
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user