Compare commits
33 Commits
file-serve
...
mautrix-te
Author | SHA1 | Date | |
---|---|---|---|
3b143d9467 | |||
0ebe8d1121 | |||
d80ae92464 | |||
883204e90e | |||
0172e6af2b | |||
66786c2455 | |||
e30a5830ef | |||
572cca2dd9 | |||
09a1cc5a26 | |||
8ef9e1b0be | |||
2e956f2ddd | |||
d3f46bf7c5 | |||
e22915119e | |||
e79ec922d1 | |||
4eff26d69d | |||
b714df956c | |||
4e905ba555 | |||
19089fd683 | |||
ee94662fd1 | |||
0992eba4dc | |||
57049fe511 | |||
b5e8cd89dd | |||
f9e8704fce | |||
1b62fee835 | |||
821b3a00ed | |||
050f2ded35 | |||
7deda2a385 | |||
066d21cf66 | |||
2e90f3455a | |||
1ccbd013f8 | |||
705a9f840b | |||
81651492ca | |||
eade86cef6 |
1674
flake.lock
generated
1674
flake.lock
generated
File diff suppressed because it is too large
Load Diff
45
flake.nix
45
flake.nix
@@ -3,28 +3,37 @@
|
|||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
||||||
|
shelvacu.url = "git+https://git.uninsane.org/shelvacu/nix-stuff";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }@inputs:
|
outputs = { self, nixpkgs, ... }@inputs:
|
||||||
let
|
let
|
||||||
secrets = builtins.fromJSON (builtins.readFile ./secrets.json);
|
secrets = builtins.fromJSON (builtins.readFile ./secrets.json);
|
||||||
in {
|
in
|
||||||
nixosModules = {
|
{
|
||||||
common = import ./modules/common.nix;
|
nixosModules = {
|
||||||
server = import ./modules/server.nix;
|
common = import ./modules/common.nix;
|
||||||
};
|
prompt = import ./modules/prompt.nix;
|
||||||
|
server = import ./modules/server.nix;
|
||||||
|
zerotier = import ./modules/zerotier.nix;
|
||||||
|
};
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
marauder = nixpkgs.lib.nixosSystem {
|
marauder = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [ ./hosts/marauder ];
|
modules = [ ./hosts/marauder ];
|
||||||
specialArgs = { inherit self inputs secrets; };
|
specialArgs = { inherit self inputs secrets; };
|
||||||
};
|
};
|
||||||
monolith = nixpkgs.lib.nixosSystem {
|
monolith = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [ ./hosts/monolith ];
|
modules = [ ./hosts/monolith ];
|
||||||
specialArgs = { inherit self inputs secrets; };
|
specialArgs = { inherit self inputs secrets; };
|
||||||
|
};
|
||||||
|
quasar = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
modules = [ ./hosts/quasar ];
|
||||||
|
specialArgs = { inherit self inputs secrets; };
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
script = "notify-send -u critical \"Backup to B2 failed\" \"$(journalctl -u restic-backups-b2 -n 5 -o cat)\"";
|
script = "notify-send -u critical \"Backup to B2 failed\" \"$(journalctl -u restic-backups-b2 -n 5 -o cat)\"";
|
||||||
};
|
};
|
||||||
restic-backups-b2 = {
|
restic-backups-b2 = {
|
||||||
onFailure = ["notify-backup-b2-failed.service"];
|
onFailure = [ "notify-backup-b2-failed.service" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -39,14 +39,9 @@
|
|||||||
repository = "b2:marauder-backup";
|
repository = "b2:marauder-backup";
|
||||||
passwordFile = "/etc/restic-password";
|
passwordFile = "/etc/restic-password";
|
||||||
paths = [
|
paths = [
|
||||||
"${config.users.users.nettika.home}/Desktop"
|
|
||||||
"${config.users.users.nettika.home}/Documents"
|
"${config.users.users.nettika.home}/Documents"
|
||||||
"${config.users.users.nettika.home}/Music"
|
"${config.users.users.nettika.home}/Artwork"
|
||||||
"${config.users.users.nettika.home}/Pictures"
|
|
||||||
"${config.users.users.nettika.home}/Projects"
|
"${config.users.users.nettika.home}/Projects"
|
||||||
"${config.users.users.nettika.home}/Public"
|
|
||||||
"${config.users.users.nettika.home}/Templates"
|
|
||||||
"${config.users.users.nettika.home}/Videos"
|
|
||||||
];
|
];
|
||||||
pruneOpts = [
|
pruneOpts = [
|
||||||
"--keep-daily 7"
|
"--keep-daily 7"
|
||||||
|
@@ -1,8 +1,12 @@
|
|||||||
{ self, pkgs, inputs, secrets, ... }:
|
{ self, pkgs, inputs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
self.nixosModules.common
|
self.nixosModules.common
|
||||||
|
self.nixosModules.prompt
|
||||||
|
self.nixosModules.zerotier
|
||||||
./backup.nix
|
./backup.nix
|
||||||
|
./dev.nix
|
||||||
|
./printing.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "marauder";
|
networking.hostName = "marauder";
|
||||||
@@ -34,7 +38,7 @@
|
|||||||
"sd_mod"
|
"sd_mod"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
kernelModules = ["kvm-amd"];
|
kernelModules = [ "kvm-amd" ];
|
||||||
kernelParams = [ "amd_pstate=active" ];
|
kernelParams = [ "amd_pstate=active" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -44,7 +48,7 @@
|
|||||||
opengl = {
|
opengl = {
|
||||||
enable = true;
|
enable = true;
|
||||||
driSupport32Bit = true;
|
driSupport32Bit = true;
|
||||||
extraPackages = [pkgs.vaapiVdpau];
|
extraPackages = [ pkgs.vaapiVdpau ];
|
||||||
};
|
};
|
||||||
nvidia.prime = {
|
nvidia.prime = {
|
||||||
offload = {
|
offload = {
|
||||||
@@ -56,41 +60,35 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment = {
|
||||||
# Chat clients
|
systemPackages = [
|
||||||
discord
|
inputs.shelvacu.packages.x86_64-linux.sm64coopdx
|
||||||
element-desktop
|
] ++ (with pkgs; [
|
||||||
telegram-desktop
|
# Chat clients
|
||||||
|
discord
|
||||||
|
slack
|
||||||
|
element-desktop
|
||||||
|
telegram-desktop
|
||||||
|
|
||||||
# Browsers
|
# Browsers
|
||||||
firefox
|
firefox
|
||||||
|
filezilla
|
||||||
|
|
||||||
# Coding
|
# Art and 3D
|
||||||
vscode
|
inkscape
|
||||||
|
gimp
|
||||||
|
krita
|
||||||
|
openscad-unstable
|
||||||
|
bambu-studio
|
||||||
|
|
||||||
# Art and 3D
|
# Multimedia
|
||||||
inkscape
|
vlc
|
||||||
openscad-unstable
|
ffmpeg
|
||||||
bambu-studio
|
(callPackage ./ffcheck.nix { })
|
||||||
|
|
||||||
# Multimedia
|
# Productivity
|
||||||
vlc
|
obsidian
|
||||||
|
]);
|
||||||
# Productivity
|
|
||||||
obsidian
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.bash = {
|
|
||||||
promptInit = ''
|
|
||||||
PS1="\[\e]0;\u@\h: \w\a\]" # window title
|
|
||||||
PS1+="\n"
|
|
||||||
PS1+="\$(printf \"%*s\" \$((\$COLUMNS + 9)) \"\[\e[1;33m\]\$(git branch --show-current 2>/dev/null)\")" # git branch
|
|
||||||
PS1+="\[\e[1G\]" # move cursor to beginning of line
|
|
||||||
PS1+="💜" # prompt symbol
|
|
||||||
PS1+="\[\033[1;$((UID ? 32 : 31))m\]" # prompt color
|
|
||||||
PS1+="[\u@\h:\w]\\$"
|
|
||||||
PS1+="\[\033[0m\] " # reset color
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
@@ -101,7 +99,7 @@
|
|||||||
|
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
videoDrivers = ["nvidia"];
|
videoDrivers = [ "nvidia" ];
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
cinnamon.enable = true;
|
cinnamon.enable = true;
|
||||||
xterm.enable = false;
|
xterm.enable = false;
|
||||||
@@ -120,8 +118,14 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.mullvad-vpn = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.mullvad-vpn; # Include GUI
|
||||||
|
};
|
||||||
|
|
||||||
|
promptEmoji = "💜";
|
||||||
|
|
||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone = "America/Los_Angeles";
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
20
hosts/marauder/dev.nix
Executable file
20
hosts/marauder/dev.nix
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.variables = {
|
||||||
|
VISUAL = "code --wait";
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
vscode
|
||||||
|
kotlin
|
||||||
|
rustup
|
||||||
|
pyenv
|
||||||
|
gcc
|
||||||
|
nixd
|
||||||
|
nixpkgs-fmt
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.direnv = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
3
hosts/marauder/ffcheck.nix
Executable file
3
hosts/marauder/ffcheck.nix
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
{ writeShellScriptBin, ffmpeg }: writeShellScriptBin "ffcheck" ''
|
||||||
|
${ffmpeg}/bin/ffmpeg -v error -stats -hide_banner -i "$1" -c copy -f null -
|
||||||
|
''
|
16
hosts/marauder/printing.nix
Executable file
16
hosts/marauder/printing.nix
Executable file
@@ -0,0 +1,16 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
system-config-printer
|
||||||
|
];
|
||||||
|
|
||||||
|
services.printing = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.avahi = {
|
||||||
|
enable = true;
|
||||||
|
nssmdns4 = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
}
|
@@ -1,8 +1,10 @@
|
|||||||
{ self, pkgs, secrets, ... }:
|
{ self, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
self.nixosModules.common
|
self.nixosModules.common
|
||||||
|
self.nixosModules.prompt
|
||||||
self.nixosModules.server
|
self.nixosModules.server
|
||||||
|
self.nixosModules.zerotier
|
||||||
./dns.nix
|
./dns.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -37,6 +39,8 @@
|
|||||||
supportedFilesystems = [ "zfs" ];
|
supportedFilesystems = [ "zfs" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
promptEmoji = "🏰";
|
||||||
|
|
||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone = "America/Los_Angeles";
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
|
68
hosts/quasar/default.nix
Executable file
68
hosts/quasar/default.nix
Executable file
@@ -0,0 +1,68 @@
|
|||||||
|
{ self, modulesPath, pkgs, config, secrets, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
"${modulesPath}/virtualisation/amazon-image.nix"
|
||||||
|
self.nixosModules.common
|
||||||
|
self.nixosModules.prompt
|
||||||
|
self.nixosModules.server
|
||||||
|
];
|
||||||
|
|
||||||
|
networking = {
|
||||||
|
hostName = "quasar";
|
||||||
|
domain = "consortium.chat";
|
||||||
|
firewall.allowedTCPPorts = [ 80 443 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
services.postgresql = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.caddy = {
|
||||||
|
enable = true;
|
||||||
|
virtualHosts = {
|
||||||
|
"${config.networking.domain}".extraConfig = ''
|
||||||
|
reverse_proxy localhost:8008
|
||||||
|
header Strict-Transport-Security "max-age=63072000; includeSubDomains;"
|
||||||
|
'';
|
||||||
|
"matrix.${config.networking.domain}".extraConfig = ''
|
||||||
|
reverse_proxy /_matrix/* localhost:8008
|
||||||
|
reverse_proxy /_synapse/client/* localhost:8008
|
||||||
|
'';
|
||||||
|
"admin.${config.networking.domain}".extraConfig = ''
|
||||||
|
root * ${pkgs.synapse-admin}
|
||||||
|
file_server
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.matrix-synapse = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
server_name = config.networking.domain;
|
||||||
|
serve_server_wellknown = true;
|
||||||
|
# app_service_config_files = [ ];
|
||||||
|
registration_shared_secret = secrets.synapse."consortium.chat".registration-shared-secret;
|
||||||
|
macaroon_secret_key = secrets.synapse."consortium.chat".macaroon-secret-key;
|
||||||
|
form_secret = secrets.synapse."consortium.chat".form-secret;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.mautrix-telegram = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
homeserver = {
|
||||||
|
address = "http://localhost:8008";
|
||||||
|
domain = config.networking.domain;
|
||||||
|
};
|
||||||
|
appservice = {
|
||||||
|
id = "telegram";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
promptEmoji = "🌟";
|
||||||
|
|
||||||
|
time.timeZone = "America/Los_Angeles";
|
||||||
|
|
||||||
|
system.stateVersion = "24.05";
|
||||||
|
}
|
@@ -1,9 +1,11 @@
|
|||||||
{ pkgs, secrets, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
substituters = [ "https://nixcache.shelvacu.com" ];
|
||||||
|
trusted-public-keys = [ "nixcache.shelvacu.com:73u5ZGBpPRoVZfgNJQKYYBt9K9Io/jPwgUfuOLsJbsM=" ];
|
||||||
trusted-users = [ "@wheel" ];
|
trusted-users = [ "@wheel" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -14,6 +16,10 @@
|
|||||||
|
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
|
|
||||||
|
environment.variables = {
|
||||||
|
EDITOR = "nano";
|
||||||
|
};
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
lfs.enable = true;
|
lfs.enable = true;
|
||||||
@@ -35,11 +41,6 @@
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
services.zerotierone = {
|
|
||||||
enable = true;
|
|
||||||
joinNetworks = secrets.zerotier.networks;
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
git-crypt
|
git-crypt
|
||||||
jq
|
jq
|
||||||
|
10
modules/prompt.nix
Executable file
10
modules/prompt.nix
Executable file
@@ -0,0 +1,10 @@
|
|||||||
|
{ lib, config, ... }:
|
||||||
|
{
|
||||||
|
options.promptEmoji = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
};
|
||||||
|
|
||||||
|
config.programs.bash.promptInit = ''
|
||||||
|
PS1="\[\e]0;\u@\h: \w\a\]\n${config.promptEmoji} \[\033[1;$((UID ? 32 : 31))m\]\w \\$\[\033[0m\] "
|
||||||
|
'';
|
||||||
|
}
|
7
modules/zerotier.nix
Executable file
7
modules/zerotier.nix
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
{ secrets, ... }:
|
||||||
|
{
|
||||||
|
services.zerotierone = {
|
||||||
|
enable = true;
|
||||||
|
joinNetworks = secrets.zerotier.networks;
|
||||||
|
};
|
||||||
|
}
|
BIN
secrets.json
BIN
secrets.json
Binary file not shown.
Reference in New Issue
Block a user