mirror of
https://github.com/kmein/niveum
synced 2026-03-20 12:01:06 +01:00
Compare commits
83 Commits
2efb8d7d8a
...
mympd
| Author | SHA1 | Date | |
|---|---|---|---|
| d06d0a9de4 | |||
| d4e82500ae | |||
| 6aa9be6f70 | |||
| 4e362678ca | |||
| a2081dece4 | |||
| 98cf188a17 | |||
| 4932c7c08a | |||
| c8a6991f09 | |||
| 5d3c9a67ab | |||
|
|
659a888c3d | ||
| 26908b03a3 | |||
| feccea5234 | |||
| 8ffb0bd245 | |||
| c1b777b689 | |||
| e85a8f7634 | |||
| 25bc6f573c | |||
| 4b5915354b | |||
| 43ab6b3210 | |||
| e08eb0e970 | |||
| 012d78cc0e | |||
|
|
62f52922b8 | ||
| 28d359c73b | |||
| 8830147359 | |||
| e9adccacd9 | |||
|
|
588ec3d180 | ||
| 6ea8500818 | |||
| bf6c82a11d | |||
| 9c68ff20bc | |||
| 2565bfbc27 | |||
| a4d002e293 | |||
| 730070bc9d | |||
| 6f1f1887b9 | |||
|
|
68f8bb06f4 | ||
| 7afe712c27 | |||
| 1946a30b2f | |||
| c1f013fc2f | |||
| 3be0766a7a | |||
| 5216f693a1 | |||
| ab3de7a042 | |||
| de6d91297b | |||
| 6342fb9047 | |||
| d37e90cb97 | |||
|
|
13727abfd6 | ||
| a23f0c80a2 | |||
| b0b19c3989 | |||
| ef223a9717 | |||
| ecfc2ca06c | |||
| cd7e688a46 | |||
|
|
f7b9008ed0 | ||
| 81706489b5 | |||
| 817f57ad09 | |||
| eafb1ce0c3 | |||
| 0c72a89760 | |||
| a7db357e54 | |||
| 1ad6c63a2f | |||
| 502ab93585 | |||
|
|
fe6bda3cf2 | ||
| c64e681ada | |||
| af813cc876 | |||
| 704f745f5e | |||
| 93dd8bd702 | |||
| 6e995764d4 | |||
| 87b9fc49ea | |||
| b4e42e6b22 | |||
| 87f73a8fc1 | |||
| db8c06364f | |||
| 24b7044a3f | |||
| 908667267b | |||
| b3090737fd | |||
| f195351474 | |||
| 1cce7dc8df | |||
| 894cc6efef | |||
| f1ed00fe40 | |||
| 7d1e1e712f | |||
| fd1c36874a | |||
| bc52a4a358 | |||
| 5aade69fbe | |||
| 0ead88d04a | |||
| d21ff3e731 | |||
| 7a918319b7 | |||
| 5524f3b92b | |||
| fe8af09148 | |||
| d9ca1e673d |
38
ci.nix
38
ci.nix
@@ -1,27 +1,36 @@
|
|||||||
{ inputs, system, name }:
|
{
|
||||||
let
|
inputs,
|
||||||
|
system,
|
||||||
|
name,
|
||||||
|
}: let
|
||||||
inherit (inputs) nixpkgs;
|
inherit (inputs) nixpkgs;
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
ensureFiles = paths: pkgs.runCommand "directory" {} ''
|
ensureFiles = paths:
|
||||||
|
pkgs.runCommand "directory" {} ''
|
||||||
set -efu
|
set -efu
|
||||||
mkdir $out
|
mkdir $out
|
||||||
cd $out
|
cd $out
|
||||||
${nixpkgs.lib.concatMapStringsSep "\n" (path: ''
|
${
|
||||||
|
nixpkgs.lib.concatMapStringsSep "\n" (path: ''
|
||||||
mkdir -p "$(dirname ${nixpkgs.lib.escapeShellArg path})"
|
mkdir -p "$(dirname ${nixpkgs.lib.escapeShellArg path})"
|
||||||
echo foo > ${nixpkgs.lib.escapeShellArg path}
|
echo foo > ${nixpkgs.lib.escapeShellArg path}
|
||||||
'') paths}
|
'')
|
||||||
|
paths
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
nixPath = nixpkgs.lib.concatStringsSep ":" ([
|
nixPath = nixpkgs.lib.concatStringsSep ":" ([
|
||||||
"niveum=${toString ./.}"
|
"niveum=${toString ./.}"
|
||||||
"nixos-config=${toString ./.}/systems/${name}/configuration.nix"
|
"nixos-config=${toString ./.}/systems/${name}/configuration.nix"
|
||||||
"system-secrets=${systemSecrets}"
|
"system-secrets=${systemSecrets}"
|
||||||
"secrets=${sharedSecrets}"
|
"secrets=${sharedSecrets}"
|
||||||
] ++ nixpkgs.lib.mapAttrsToList (name: value: "${name}=${value}") inputs);
|
]
|
||||||
|
++ nixpkgs.lib.mapAttrsToList (name: value: "${name}=${value}") inputs);
|
||||||
# cd ~/.password-store/shared && find * -type f | sed 's/.gpg$//'
|
# cd ~/.password-store/shared && find * -type f | sed 's/.gpg$//'
|
||||||
sharedSecrets = ensureFiles [
|
sharedSecrets = ensureFiles [
|
||||||
"di.fm/key"
|
"di.fm/key"
|
||||||
"eduroam/identity"
|
"eduroam/identity"
|
||||||
"eduroam/password"
|
"eduroam/password"
|
||||||
|
"hass/token"
|
||||||
"mail/cock"
|
"mail/cock"
|
||||||
"mail/fastmail"
|
"mail/fastmail"
|
||||||
"mail/gmail/amroplay"
|
"mail/gmail/amroplay"
|
||||||
@@ -37,10 +46,14 @@ let
|
|||||||
"spotify/username"
|
"spotify/username"
|
||||||
"spotify/password"
|
"spotify/password"
|
||||||
];
|
];
|
||||||
systemSecrets = let basic = [ "retiolum.ed25519" "retiolum.key" "syncthing/cert.pem" "syncthing/key.pem"]; in {
|
systemSecrets = let
|
||||||
zaatar = ensureFiles ([ "moodle.token" "telegram/moodle-dl.token" ] ++ basic);
|
basic = ["retiolum.ed25519" "retiolum.key" "syncthing/cert.pem" "syncthing/key.pem"];
|
||||||
|
in
|
||||||
|
{
|
||||||
|
zaatar = ensureFiles (["moodle.token" "telegram/moodle-dl.token" "mpd-web.key"] ++ basic);
|
||||||
kabsa = ensureFiles basic;
|
kabsa = ensureFiles basic;
|
||||||
manakish = ensureFiles basic;
|
manakish = ensureFiles basic;
|
||||||
|
tahina = ensureFiles basic;
|
||||||
makanek = ensureFiles ([
|
makanek = ensureFiles ([
|
||||||
"irc/retiolum"
|
"irc/retiolum"
|
||||||
"irc/hackint"
|
"irc/hackint"
|
||||||
@@ -62,6 +75,9 @@ let
|
|||||||
"telegram/kmein.token"
|
"telegram/kmein.token"
|
||||||
"telegram/prometheus.token"
|
"telegram/prometheus.token"
|
||||||
"weechat/relay"
|
"weechat/relay"
|
||||||
] ++ basic);
|
]
|
||||||
}.${name};
|
++ basic);
|
||||||
in toString (pkgs.writers.writeDash "build" "NIX_PATH=${nixPath} nix-build '<nixpkgs/nixos>' -A system --dry-run")
|
}
|
||||||
|
.${name};
|
||||||
|
in
|
||||||
|
toString (pkgs.writers.writeDash "build" "NIX_PATH=${nixPath} nix-build '<nixpkgs/nixos>' -A system --dry-run")
|
||||||
|
|||||||
@@ -1,13 +1,16 @@
|
|||||||
{ pkgs, lib, config, ... }:
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
environment.variables.TERMINAL = "alacritty";
|
environment.variables.TERMINAL = "alacritty";
|
||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
pkgs.alacritty
|
pkgs.alacritty
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users.me.xdg.configFile =
|
home-manager.users.me.xdg.configFile = let
|
||||||
let
|
|
||||||
inherit (import <niveum/lib>) colours;
|
inherit (import <niveum/lib>) colours;
|
||||||
colourNames = ["black" "red" "green" "yellow" "blue" "magenta" "cyan" "white"];
|
colourNames = ["black" "red" "green" "yellow" "blue" "magenta" "cyan" "white"];
|
||||||
colourPairs = lib.getAttrs colourNames colours;
|
colourPairs = lib.getAttrs colourNames colours;
|
||||||
|
|||||||
@@ -1,12 +1,17 @@
|
|||||||
{ pkgs, config, ... }:
|
|
||||||
let
|
|
||||||
inherit (import <niveum/lib>) restic;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (import <niveum/lib>) restic;
|
||||||
|
in {
|
||||||
services.restic.backups.niveum = {
|
services.restic.backups.niveum = {
|
||||||
initialize = true;
|
initialize = true;
|
||||||
inherit (restic) repository;
|
inherit (restic) repository;
|
||||||
timerConfig = { OnCalendar = "8:00"; RandomizedDelaySec = "1h"; };
|
timerConfig = {
|
||||||
|
OnCalendar = "8:00";
|
||||||
|
RandomizedDelaySec = "1h";
|
||||||
|
};
|
||||||
passwordFile = toString <secrets/restic/password>;
|
passwordFile = toString <secrets/restic/password>;
|
||||||
extraBackupArgs = [
|
extraBackupArgs = [
|
||||||
"--exclude=/home/kfm/projects/nixpkgs/.git"
|
"--exclude=/home/kfm/projects/nixpkgs/.git"
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ config, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
boot.extraModulePackages = with config.boot.kernelPackages; [
|
boot.extraModulePackages = with config.boot.kernelPackages; [
|
||||||
tp_smapi
|
tp_smapi
|
||||||
acpi_call
|
acpi_call
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ lib, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
environment.systemPackages = [pkgs.beets];
|
environment.systemPackages = [pkgs.beets];
|
||||||
home-manager.users.me.xdg.configFile = {
|
home-manager.users.me.xdg.configFile = {
|
||||||
"beets/config.yaml".source = (pkgs.formats.yaml {}).generate "config.yaml" {
|
"beets/config.yaml".source = (pkgs.formats.yaml {}).generate "config.yaml" {
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{ pkgs, lib, ... }: {
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
hardware.bluetooth = {
|
hardware.bluetooth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.General.Enable =
|
settings.General.Enable =
|
||||||
|
|||||||
@@ -2,11 +2,11 @@
|
|||||||
programs.chromium = {
|
programs.chromium = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extensions = [
|
extensions = [
|
||||||
"nngceckbapebfimnlniiiahkandclblb" # BitWarden
|
|
||||||
# "ihlenndgcmojhcghmfjfneahoeklbjjh" # cVim
|
# "ihlenndgcmojhcghmfjfneahoeklbjjh" # cVim
|
||||||
# "fpnmgdkabkmnadcjpehmlllkndpkmiak" # Wayback Machine
|
# "fpnmgdkabkmnadcjpehmlllkndpkmiak" # Wayback Machine
|
||||||
"cjpalhdlnbpafiamejdnhcphjbkeiagm" # uBlock Origin
|
"cjpalhdlnbpafiamejdnhcphjbkeiagm" # uBlock Origin
|
||||||
"khncfooichmfjbepaaaebmommgaepoid" # Remove YouTube Recommended Videos
|
"pjjgklgkfeoeiebjogplpnibpfnffkng" # undistracted
|
||||||
|
"nhdogjmejiglipccpnnnanhbledajbpd" # vuejs devtools
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,11 @@
|
|||||||
{ config, lib, pkgs, ... }: {
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (import <niveum/lib>) tmpfilesConfig;
|
||||||
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
<niveum/modules/dropbox.nix>
|
<niveum/modules/dropbox.nix>
|
||||||
];
|
];
|
||||||
@@ -7,13 +14,35 @@
|
|||||||
dropbox.enable = false;
|
dropbox.enable = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
system.activationScripts.home-symlinks = ''
|
systemd.tmpfiles.rules = map tmpfilesConfig [
|
||||||
ln -sfn ${config.users.users.me.home}/cloud/syncthing/common/mahlzeit ${config.users.users.me.home}/mahlzeit
|
{
|
||||||
ln -sfn ${config.users.users.me.home}/cloud/Seafile/Wiki ${config.users.users.me.home}/notes
|
type = "L+";
|
||||||
ln -sfn ${config.users.users.me.home}/cloud/Seafile/Uni ${config.users.users.me.home}/uni
|
user = config.users.users.me.name;
|
||||||
'';
|
group = "users";
|
||||||
|
mode = "0755";
|
||||||
|
argument = "${config.users.users.me.home}/cloud/Seafile/Wiki";
|
||||||
|
path = "${config.users.users.me.home}/notes";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
type = "L+";
|
||||||
|
user = config.users.users.me.name;
|
||||||
|
group = "users";
|
||||||
|
mode = "0755";
|
||||||
|
argument = "${config.users.users.me.home}/cloud/Seafile/Uni";
|
||||||
|
path = "${config.users.users.me.home}/uni";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
type = "L+";
|
||||||
|
user = config.users.users.me.name;
|
||||||
|
group = "users";
|
||||||
|
mode = "0755";
|
||||||
|
argument = "${config.users.users.me.home}/cloud/syncthing/common/mahlzeit";
|
||||||
|
path = "${config.users.users.me.home}/mahlzeit";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
home-manager.users.me = {
|
home-manager.users.me = {
|
||||||
|
services.gnome-keyring.enable = true;
|
||||||
services.nextcloud-client = {
|
services.nextcloud-client = {
|
||||||
enable = true;
|
enable = true;
|
||||||
startInBackground = true;
|
startInBackground = true;
|
||||||
@@ -50,8 +79,8 @@
|
|||||||
cert = toString <system-secrets/syncthing/cert.pem>;
|
cert = toString <system-secrets/syncthing/cert.pem>;
|
||||||
key = toString <system-secrets/syncthing/key.pem>;
|
key = toString <system-secrets/syncthing/key.pem>;
|
||||||
inherit ((import <niveum/lib>).syncthing) devices;
|
inherit ((import <niveum/lib>).syncthing) devices;
|
||||||
folders =
|
folders = let
|
||||||
let cloud-dir = "${config.users.users.me.home}/cloud";
|
cloud-dir = "${config.users.users.me.home}/cloud";
|
||||||
in {
|
in {
|
||||||
"${cloud-dir}/syncthing/common".devices = ["kabsa" "manakish"];
|
"${cloud-dir}/syncthing/common".devices = ["kabsa" "manakish"];
|
||||||
"${cloud-dir}/syncthing/library".devices = ["kabsa" "manakish" "heym"];
|
"${cloud-dir}/syncthing/library".devices = ["kabsa" "manakish" "heym"];
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ config, pkgs, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
copyqConfig = pkgs.writers.writeDash "copyq-config" ''
|
copyqConfig = pkgs.writers.writeDash "copyq-config" ''
|
||||||
${pkgs.copyq}/bin/copyq config check_clipboard true
|
${pkgs.copyq}/bin/copyq config check_clipboard true
|
||||||
${pkgs.copyq}/bin/copyq config check_selection false
|
${pkgs.copyq}/bin/copyq config check_selection false
|
||||||
|
|||||||
@@ -1,5 +1,10 @@
|
|||||||
{ pkgs, lib, config, options, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
options,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (lib.strings) makeBinPath;
|
inherit (lib.strings) makeBinPath;
|
||||||
inherit (import <niveum/lib>) localAddresses kieran;
|
inherit (import <niveum/lib>) localAddresses kieran;
|
||||||
in {
|
in {
|
||||||
@@ -29,7 +34,10 @@ in {
|
|||||||
};
|
};
|
||||||
overlays = [
|
overlays = [
|
||||||
(self: super: {
|
(self: super: {
|
||||||
scripts = import <niveum/packages/scripts> { pkgs = super; lib = super.lib; };
|
scripts = import <niveum/packages/scripts> {
|
||||||
|
pkgs = super;
|
||||||
|
lib = super.lib;
|
||||||
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
@@ -57,8 +65,7 @@ in {
|
|||||||
users.users.me = {
|
users.users.me = {
|
||||||
name = "kfm";
|
name = "kfm";
|
||||||
description = kieran.name;
|
description = kieran.name;
|
||||||
hashedPassword =
|
hashedPassword = "$6$w9hXyGFl/.IZBXk$5OiWzS1G.5hImhh1YQmZiCXYNAJhi3X6Y3uSLupJNYYXPLMsQpx2fwF4Xr2uYzGMV8Foqh8TgUavx1APD9rcb/";
|
||||||
"$6$w9hXyGFl/.IZBXk$5OiWzS1G.5hImhh1YQmZiCXYNAJhi3X6Y3uSLupJNYYXPLMsQpx2fwF4Xr2uYzGMV8Foqh8TgUavx1APD9rcb/";
|
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
uid = 1000;
|
uid = 1000;
|
||||||
};
|
};
|
||||||
@@ -76,13 +83,15 @@ in {
|
|||||||
# copy server:/run/pulse/.config/pulse/cookie to client:~/.config/pulse/cookie to authenticate a client machine
|
# copy server:/run/pulse/.config/pulse/cookie to client:~/.config/pulse/cookie to authenticate a client machine
|
||||||
zeroconf.discovery.enable = true;
|
zeroconf.discovery.enable = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
load-module ${toString [
|
load-module ${
|
||||||
|
toString [
|
||||||
"module-tunnel-sink-new"
|
"module-tunnel-sink-new"
|
||||||
"server=zaatar.r"
|
"server=zaatar.r"
|
||||||
"sink_name=zaatar"
|
"sink_name=zaatar"
|
||||||
"channels=2"
|
"channels=2"
|
||||||
"rate=44100"
|
"rate=44100"
|
||||||
]}
|
]
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -91,8 +100,7 @@ in {
|
|||||||
environment.systemPackages = [pkgs.pavucontrol pkgs.ncpamixer pkgs.pamixer pkgs.pulsemixer];
|
environment.systemPackages = [pkgs.pavucontrol pkgs.ncpamixer pkgs.pamixer pkgs.pulsemixer];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
environment.interactiveShellInit =
|
environment.interactiveShellInit = "export PATH=$PATH:$HOME/projects/niveum";
|
||||||
"export PATH=$PATH:$HOME/projects/niveum";
|
|
||||||
environment.shellAliases = let
|
environment.shellAliases = let
|
||||||
wcd = pkgs.writers.writeDash "wcd" ''
|
wcd = pkgs.writers.writeDash "wcd" ''
|
||||||
cd "$(readlink "$(${pkgs.which}/bin/which --skip-alias "$1")" | xargs dirname)/.."
|
cd "$(readlink "$(${pkgs.which}/bin/which --skip-alias "$1")" | xargs dirname)/.."
|
||||||
@@ -103,12 +111,15 @@ in {
|
|||||||
take = pkgs.writers.writeDash "take" ''
|
take = pkgs.writers.writeDash "take" ''
|
||||||
mkdir "$1" && cd "$1"
|
mkdir "$1" && cd "$1"
|
||||||
'';
|
'';
|
||||||
|
cdt = pkgs.writers.writeDash "cdt" ''
|
||||||
|
cd "$(mktemp -d)"
|
||||||
|
pwd
|
||||||
|
'';
|
||||||
swallow = command: "${pkgs.scripts.swallow}/bin/swallow ${command}";
|
swallow = command: "${pkgs.scripts.swallow}/bin/swallow ${command}";
|
||||||
in {
|
in {
|
||||||
"ß" = "${pkgs.utillinux}/bin/setsid";
|
"ß" = "${pkgs.utillinux}/bin/setsid";
|
||||||
cat = "${pkgs.bat}/bin/bat --style=plain";
|
cat = "${pkgs.bat}/bin/bat --style=plain";
|
||||||
chromium-incognito =
|
chromium-incognito = "chromium --user-data-dir=$(mktemp -d /tmp/chr.XXXXXX) --no-first-run --incognito";
|
||||||
"chromium --user-data-dir=$(mktemp -d /tmp/chr.XXXXXX) --no-first-run --incognito";
|
|
||||||
cp = "cp --interactive";
|
cp = "cp --interactive";
|
||||||
ip = "${pkgs.iproute}/bin/ip -c";
|
ip = "${pkgs.iproute}/bin/ip -c";
|
||||||
l = "ls --color=auto --time-style=long-iso --almost-all";
|
l = "ls --color=auto --time-style=long-iso --almost-all";
|
||||||
@@ -124,6 +135,8 @@ in {
|
|||||||
rm = "rm --interactive";
|
rm = "rm --interactive";
|
||||||
s = "${pkgs.systemd}/bin/systemctl";
|
s = "${pkgs.systemd}/bin/systemctl";
|
||||||
take = "source ${take}";
|
take = "source ${take}";
|
||||||
|
cdt = "source ${cdt}";
|
||||||
|
vit = "$EDITOR $(mktemp)";
|
||||||
tmux = "${pkgs.tmux}/bin/tmux -2";
|
tmux = "${pkgs.tmux}/bin/tmux -2";
|
||||||
sxiv = swallow "${pkgs.sxiv}/bin/sxiv";
|
sxiv = swallow "${pkgs.sxiv}/bin/sxiv";
|
||||||
zathura = swallow "${pkgs.zathura}/bin/zathura";
|
zathura = swallow "${pkgs.zathura}/bin/zathura";
|
||||||
@@ -131,10 +144,8 @@ in {
|
|||||||
wcd = "source ${wcd}";
|
wcd = "source ${wcd}";
|
||||||
im = "${pkgs.openssh}/bin/ssh weechat@makanek -t tmux attach-session -t IM";
|
im = "${pkgs.openssh}/bin/ssh weechat@makanek -t tmux attach-session -t IM";
|
||||||
where = "source ${where}";
|
where = "source ${where}";
|
||||||
yt =
|
yt = "${pkgs.youtube-dl}/bin/youtube-dl --add-metadata -ic"; # Download video link
|
||||||
"${pkgs.youtube-dl}/bin/youtube-dl --add-metadata -ic"; # Download video link
|
yta = "${pkgs.youtube-dl}/bin/youtube-dl --add-metadata -xic"; # Download with audio
|
||||||
yta =
|
|
||||||
"${pkgs.youtube-dl}/bin/youtube-dl --add-metadata -xic"; # Download with audio
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{i18n.defaultLocale = "en_DK.UTF-8";}
|
{i18n.defaultLocale = "en_DK.UTF-8";}
|
||||||
@@ -176,7 +187,7 @@ in {
|
|||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
pkgs.gnupg
|
pkgs.gnupg
|
||||||
(pkgs.pass.withExtensions (e: [e.pass-otp]))
|
(pkgs.pass.withExtensions (e: [e.pass-otp e.pass-import e.pass-genphrase]))
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
@@ -189,10 +200,12 @@ in {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
networking.hosts = lib.mapAttrs' (name: address: {
|
networking.hosts =
|
||||||
|
lib.mapAttrs' (name: address: {
|
||||||
name = address;
|
name = address;
|
||||||
value = ["${name}.local"];
|
value = ["${name}.local"];
|
||||||
}) localAddresses;
|
})
|
||||||
|
localAddresses;
|
||||||
}
|
}
|
||||||
./alacritty.nix
|
./alacritty.nix
|
||||||
./backup.nix
|
./backup.nix
|
||||||
@@ -228,6 +241,7 @@ in {
|
|||||||
./flameshot-once.nix
|
./flameshot-once.nix
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./stardict.nix
|
./stardict.nix
|
||||||
|
./polkit.nix
|
||||||
./power-action.nix
|
./power-action.nix
|
||||||
./printing.nix
|
./printing.nix
|
||||||
./openweathermap.nix
|
./openweathermap.nix
|
||||||
@@ -248,5 +262,6 @@ in {
|
|||||||
./vscode.nix
|
./vscode.nix
|
||||||
./watson.nix
|
./watson.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
|
./tor.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
{ pkgs, ... }:
|
{pkgs, ...}: let
|
||||||
let
|
|
||||||
nixify = pkgs.writers.writeDashBin "nixify" ''
|
nixify = pkgs.writers.writeDashBin "nixify" ''
|
||||||
set -efuC
|
set -efuC
|
||||||
|
|
||||||
@@ -22,14 +21,14 @@ in {
|
|||||||
|
|
||||||
home-manager.users.me.programs.direnv = {
|
home-manager.users.me.programs.direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
stdlib = builtins.readFile ("${
|
stdlib = builtins.readFile "${
|
||||||
pkgs.fetchFromGitHub {
|
pkgs.fetchFromGitHub {
|
||||||
owner = "Mic92";
|
owner = "Mic92";
|
||||||
repo = "dotfiles";
|
repo = "dotfiles";
|
||||||
rev = "a0a9b7e358fa70a85cd468f8ca1fbb02ae0a91df";
|
rev = "a0a9b7e358fa70a85cd468f8ca1fbb02ae0a91df";
|
||||||
sha256 = "1y9h5s1lf59sczsm0ksq2x1yhl98ba9lwk5yil3q53rg7n4574pg";
|
sha256 = "1y9h5s1lf59sczsm0ksq2x1yhl98ba9lwk5yil3q53rg7n4574pg";
|
||||||
}
|
}
|
||||||
}/home/.direnvrc");
|
}/home/.direnvrc";
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.zsh.interactiveShellInit = ''
|
programs.zsh.interactiveShellInit = ''
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{ lib, config, pkgs, ... }: {
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
(import <stockholm/makefu/3modules/bump-distrowatch.nix> {
|
(import <stockholm/makefu/3modules/bump-distrowatch.nix> {
|
||||||
inherit lib config;
|
inherit lib config;
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{ lib, pkgs, ... }: {
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
virtualisation.docker = {
|
virtualisation.docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# for ICE wifi, ref https://gist.github.com/sunsided/7840e89ff4e11b64a2d7503fafa0290c
|
# for ICE wifi, ref https://gist.github.com/sunsided/7840e89ff4e11b64a2d7503fafa0290c
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ config, pkgs, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (import <niveum/lib>) defaultApplications colours theme;
|
inherit (import <niveum/lib>) defaultApplications colours theme;
|
||||||
in {
|
in {
|
||||||
home-manager.users.me.services.dunst = {
|
home-manager.users.me.services.dunst = {
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ lib, pkgs, ... }:
|
{
|
||||||
let
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (import <niveum/lib>) defaultApplications;
|
inherit (import <niveum/lib>) defaultApplications;
|
||||||
flameshot-once =
|
flameshot-once =
|
||||||
pkgs.callPackage <stockholm/krebs/5pkgs/simple/flameshot-once> {};
|
pkgs.callPackage <stockholm/krebs/5pkgs/simple/flameshot-once> {};
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ config, pkgs, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
flixLocation = "/media/flix";
|
flixLocation = "/media/flix";
|
||||||
cacheLocation = "/var/cache/flix";
|
cacheLocation = "/var/cache/flix";
|
||||||
indexFilename = "index";
|
indexFilename = "index";
|
||||||
@@ -18,7 +21,6 @@ in {
|
|||||||
"x-systemd.device-timeout=1"
|
"x-systemd.device-timeout=1"
|
||||||
"x-systemd.idle-timeout=1min"
|
"x-systemd.idle-timeout=1min"
|
||||||
"x-systemd.requires=tinc.retiolum.service"
|
"x-systemd.requires=tinc.retiolum.service"
|
||||||
"x-systemd.requires=wpa_supplicant.service"
|
|
||||||
"user"
|
"user"
|
||||||
"_netdev"
|
"_netdev"
|
||||||
];
|
];
|
||||||
@@ -75,5 +77,4 @@ in {
|
|||||||
| ${pkgs.findutils}/bin/xargs -I '{}' ${pkgs.utillinux}/bin/setsid ${pkgs.xdg_utils}/bin/xdg-open '{}'
|
| ${pkgs.findutils}/bin/xargs -I '{}' ${pkgs.utillinux}/bin/setsid ${pkgs.xdg_utils}/bin/xdg-open '{}'
|
||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,42 +1,53 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
nixpkgs.config.joypixels.acceptLicense = true;
|
nixpkgs.config.joypixels.acceptLicense = true;
|
||||||
|
|
||||||
fonts = {
|
fonts = {
|
||||||
enableDefaultFonts = true;
|
enableDefaultFonts = true;
|
||||||
fontDir.enable = true;
|
fontDir.enable = true;
|
||||||
fonts = with pkgs; [
|
fonts = with pkgs; [
|
||||||
alegreya
|
alegreya
|
||||||
alegreya-sans
|
alegreya-sans
|
||||||
|
amiri
|
||||||
|
cantarell-fonts
|
||||||
|
charis-sil
|
||||||
corefonts
|
corefonts
|
||||||
|
crimson
|
||||||
eb-garamond
|
eb-garamond
|
||||||
|
etBook
|
||||||
fira
|
fira
|
||||||
font-awesome-ttf
|
font-awesome-ttf
|
||||||
|
gentium
|
||||||
|
gfs-fonts
|
||||||
|
gyre-fonts
|
||||||
|
ia-writer-duospace
|
||||||
ibm-plex
|
ibm-plex
|
||||||
inconsolata
|
jetbrains-mono
|
||||||
iosevka
|
joypixels
|
||||||
libertine
|
libertinus
|
||||||
|
libre-bodoni
|
||||||
lmodern
|
lmodern
|
||||||
|
merriweather
|
||||||
noto-fonts
|
noto-fonts
|
||||||
noto-fonts-cjk
|
ocr-a
|
||||||
noto-fonts-emoji
|
|
||||||
roboto
|
roboto
|
||||||
roboto-mono
|
roboto-mono
|
||||||
roboto-slab
|
roboto-slab
|
||||||
|
scheherazade-new
|
||||||
source-code-pro
|
source-code-pro
|
||||||
source-serif-pro
|
|
||||||
source-sans-pro
|
source-sans-pro
|
||||||
ubuntu_font_family
|
source-serif-pro
|
||||||
gfs-fonts
|
theano
|
||||||
jetbrains-mono
|
|
||||||
twemoji-color-font
|
|
||||||
joypixels
|
|
||||||
tocharian-font
|
tocharian-font
|
||||||
];
|
vistafonts
|
||||||
fontconfig.defaultFonts = {
|
vollkorn
|
||||||
monospace = [ "JetBrains Mono" "JoyPixels" ];
|
zilla-slab
|
||||||
serif = [ "Roboto Slab" ];
|
]; # google-fonts league-of-moveable-type
|
||||||
sansSerif = [ "Roboto" "Noto Sans" ];
|
fontconfig.defaultFonts = let
|
||||||
emoji = [ "JoyPixels" ];
|
emojiFont = "JoyPixels";
|
||||||
|
in {
|
||||||
|
monospace = ["JetBrains Mono" emojiFont];
|
||||||
|
serif = ["Merriweather"];
|
||||||
|
sansSerif = ["Cantarell" emojiFont];
|
||||||
|
emoji = [emojiFont];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{ pkgs, lib, ... }: {
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = [pkgs.fzf];
|
systemPackages = [pkgs.fzf];
|
||||||
variables = {
|
variables = {
|
||||||
|
|||||||
@@ -1,16 +1,19 @@
|
|||||||
{ pkgs, config, lib, ... }:
|
|
||||||
let
|
|
||||||
inherit (import <niveum/lib>) kieran ignorePaths;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (import <niveum/lib>) kieran ignorePaths;
|
||||||
|
in {
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
pkgs.mr
|
pkgs.mr
|
||||||
pkgs.git
|
pkgs.git
|
||||||
pkgs.gitAndTools.gitflow
|
pkgs.gitAndTools.gitflow
|
||||||
pkgs.gitAndTools.hub
|
|
||||||
pkgs.gitAndTools.gh
|
pkgs.gitAndTools.gh
|
||||||
pkgs.gitAndTools.git-extras
|
pkgs.gitAndTools.git-extras
|
||||||
pkgs.gitAndTools.git-trim
|
pkgs.gitAndTools.git-trim
|
||||||
|
pkgs.gitAndTools.git-absorb
|
||||||
pkgs.gitstats
|
pkgs.gitstats
|
||||||
pkgs.patch
|
pkgs.patch
|
||||||
pkgs.patchutils
|
pkgs.patchutils
|
||||||
@@ -23,37 +26,6 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users.me = {
|
home-manager.users.me = {
|
||||||
home.file.".mrconfig".text = let
|
|
||||||
prependPath = prefix:
|
|
||||||
lib.attrsets.mapAttrs'
|
|
||||||
(path: lib.attrsets.nameValuePair "${prefix}/${path}");
|
|
||||||
git = url: { checkout = "git clone ${url}"; };
|
|
||||||
github = owner: repo: git "git@github.com:${owner}/${repo}";
|
|
||||||
keybase = owner: repo: git "keybase://private/${owner}/${repo}";
|
|
||||||
in lib.generators.toINI { } ({
|
|
||||||
DEFAULT = { git_gc = ''git gc "$@"''; };
|
|
||||||
} // prependPath "projects" {
|
|
||||||
"menstruation.rs" = github "kmein" "menstruation.rs";
|
|
||||||
brockman = github "kmein" "brockman";
|
|
||||||
challenges = github "kmein" "challenges";
|
|
||||||
conlangs = github "kmein" "conlangs";
|
|
||||||
ledger = keybase "kmein" "ledger";
|
|
||||||
mahlzeit = github "kmein" "mahlzeit";
|
|
||||||
menstruation-telegram = github "kmein" "menstruation-telegram";
|
|
||||||
meteora = github "kmein" "meteora";
|
|
||||||
modernizr = github "kmein" "modernizr";
|
|
||||||
niveum = github "kmein" "niveum";
|
|
||||||
nixpkgs = github "NixOS" "nixpkgs";
|
|
||||||
poetry = github "kmein" "poetry";
|
|
||||||
quotes = github "kmein" "quotes";
|
|
||||||
sphinx = github "kmein" "sphinx";
|
|
||||||
stockholm = git "https://cgit.krebsco.de/stockholm";
|
|
||||||
telebots = github "kmein" "telebots";
|
|
||||||
traadfri = github "kmein" "traadfri";
|
|
||||||
wissen = github "kmein" "wissen";
|
|
||||||
zen = github "kmein" "zen";
|
|
||||||
});
|
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.gitAndTools.gitFull;
|
package = pkgs.gitAndTools.gitFull;
|
||||||
@@ -70,8 +42,7 @@ in
|
|||||||
diffs = "diff --staged";
|
diffs = "diff --staged";
|
||||||
last = "log -1 HEAD";
|
last = "log -1 HEAD";
|
||||||
logs = "log --pretty=oneline";
|
logs = "log --pretty=oneline";
|
||||||
graph =
|
graph = "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all";
|
||||||
"log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all";
|
|
||||||
};
|
};
|
||||||
ignores = ignorePaths;
|
ignores = ignorePaths;
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{ config, pkgs, ... }: {
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [<niveum/modules/hledger.nix>];
|
imports = [<niveum/modules/hledger.nix>];
|
||||||
|
|
||||||
niveum.hledger = {
|
niveum.hledger = {
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (lib.strings) fileContents;
|
inherit (lib.strings) fileContents;
|
||||||
inherit (import <niveum/lib>) sshPort;
|
inherit (import <niveum/lib>) sshPort;
|
||||||
eduroam = {
|
eduroam = {
|
||||||
@@ -32,7 +36,6 @@ in {
|
|||||||
options = hu-berlin-cifs-options;
|
options = hu-berlin-cifs-options;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
home-manager.users.me.programs.ssh = {
|
home-manager.users.me.programs.ssh = {
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
"alew.hu-berlin.de" = {
|
"alew.hu-berlin.de" = {
|
||||||
@@ -46,7 +49,8 @@ in {
|
|||||||
(pkgs.writers.writeDashBin "hu-ip" ''
|
(pkgs.writers.writeDashBin "hu-ip" ''
|
||||||
${pkgs.w3m}/bin/w3m -dump meineip.hu-berlin.de | head --lines=-4 | tail --lines=+3
|
${pkgs.w3m}/bin/w3m -dump meineip.hu-berlin.de | head --lines=-4 | tail --lines=+3
|
||||||
'')
|
'')
|
||||||
(pkgs.writers.writePython3Bin "hu-eduroam-install"
|
(
|
||||||
|
pkgs.writers.writePython3Bin "hu-eduroam-install"
|
||||||
{
|
{
|
||||||
libraries = with pkgs.python3Packages; [distro pyopenssl dbus-python];
|
libraries = with pkgs.python3Packages; [distro pyopenssl dbus-python];
|
||||||
flakeIgnore = ["E501" "E123" "W504" "E722" "F821" "E226" "E126" "E265" "W291"];
|
flakeIgnore = ["E501" "E123" "W504" "E722" "F821" "E226" "E126" "E265" "W291"];
|
||||||
@@ -63,13 +67,15 @@ in {
|
|||||||
wants = ["network-online.target"];
|
wants = ["network-online.target"];
|
||||||
conflicts = ["openvpn-hu-berlin.service"];
|
conflicts = ["openvpn-hu-berlin.service"];
|
||||||
script = ''
|
script = ''
|
||||||
${pkgs.openfortivpn}/bin/openfortivpn -c ${pkgs.writeText "hu-berlin.config" ''
|
${pkgs.openfortivpn}/bin/openfortivpn -c ${
|
||||||
|
pkgs.writeText "hu-berlin.config" ''
|
||||||
host = forti-ssl.vpn.hu-berlin.de
|
host = forti-ssl.vpn.hu-berlin.de
|
||||||
port = 443
|
port = 443
|
||||||
trusted-cert = 42193a913d276d9eb86217612956e1e6464d6f07bed5393a4787c87adc4bd359
|
trusted-cert = 42193a913d276d9eb86217612956e1e6464d6f07bed5393a4787c87adc4bd359
|
||||||
username = ${eduroam.identity}@split_tunnel
|
username = ${eduroam.identity}@split_tunnel
|
||||||
password = ${eduroam.password}
|
password = ${eduroam.password}
|
||||||
''}
|
''
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -82,8 +88,7 @@ in {
|
|||||||
password = eduroam.password;
|
password = eduroam.password;
|
||||||
};
|
};
|
||||||
config = fileContents (pkgs.fetchurl {
|
config = fileContents (pkgs.fetchurl {
|
||||||
url =
|
url = "https://www.cms.hu-berlin.de/de/dl/netze/vpn/openvpn/hu-berlin.ovpn";
|
||||||
"https://www.cms.hu-berlin.de/de/dl/netze/vpn/openvpn/hu-berlin.ovpn";
|
|
||||||
sha256 = "15b55aibik5460svjq2gwxrcyh6ay4k8savd6cd5lncgndmd8p8h";
|
sha256 = "15b55aibik5460svjq2gwxrcyh6ay4k8savd6cd5lncgndmd8p8h";
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (import <niveum/lib>) defaultApplications colours;
|
inherit (import <niveum/lib>) defaultApplications colours;
|
||||||
klem = import <niveum/packages/scripts/klem.nix> {
|
klem = import <niveum/packages/scripts/klem.nix> {
|
||||||
inherit pkgs lib;
|
inherit pkgs lib;
|
||||||
@@ -45,7 +49,6 @@ let
|
|||||||
move-to-new-workspace = pkgs.writers.writeDash "new-workspace" ''
|
move-to-new-workspace = pkgs.writers.writeDash "new-workspace" ''
|
||||||
i3-msg move container to workspace $(($(i3-msg -t get_workspaces | tr , '\n' | grep '"num":' | cut -d : -f 2 | sort -rn | head -1) + 1))
|
i3-msg move container to workspace $(($(i3-msg -t get_workspaces | tr , '\n' | grep '"num":' | cut -d : -f 2 | sort -rn | head -1) + 1))
|
||||||
'';
|
'';
|
||||||
|
|
||||||
in {
|
in {
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
displayManager.defaultSession = "none+i3";
|
displayManager.defaultSession = "none+i3";
|
||||||
@@ -73,7 +76,10 @@ in {
|
|||||||
home-manager.users.me.xsession.windowManager.i3 = {
|
home-manager.users.me.xsession.windowManager.i3 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = rec {
|
config = rec {
|
||||||
fonts = {names = ["Sans"]; size = 10.0;};
|
fonts = {
|
||||||
|
names = ["Sans"];
|
||||||
|
size = 10.0;
|
||||||
|
};
|
||||||
modifier = "Mod4";
|
modifier = "Mod4";
|
||||||
window = {
|
window = {
|
||||||
titlebar = false;
|
titlebar = false;
|
||||||
@@ -111,31 +117,43 @@ in {
|
|||||||
text = colours.foreground;
|
text = colours.foreground;
|
||||||
};
|
};
|
||||||
in rec {
|
in rec {
|
||||||
focused = scheme // {
|
focused =
|
||||||
|
scheme
|
||||||
|
// {
|
||||||
border = colours.cyan.bright;
|
border = colours.cyan.bright;
|
||||||
indicator = colours.cyan.bright;
|
indicator = colours.cyan.bright;
|
||||||
childBorder = colours.cyan.bright;
|
childBorder = colours.cyan.bright;
|
||||||
};
|
};
|
||||||
unfocused = scheme // {
|
unfocused =
|
||||||
|
scheme
|
||||||
|
// {
|
||||||
border = colours.background;
|
border = colours.background;
|
||||||
indicator = colours.background;
|
indicator = colours.background;
|
||||||
childBorder = colours.background;
|
childBorder = colours.background;
|
||||||
};
|
};
|
||||||
focusedInactive = unfocused;
|
focusedInactive = unfocused;
|
||||||
urgent = scheme // {
|
urgent =
|
||||||
|
scheme
|
||||||
|
// {
|
||||||
border = colours.red.bright;
|
border = colours.red.bright;
|
||||||
indicator = colours.red.bright;
|
indicator = colours.red.bright;
|
||||||
childBorder = colours.red.bright;
|
childBorder = colours.red.bright;
|
||||||
};
|
};
|
||||||
placeholder = scheme // {
|
placeholder =
|
||||||
|
scheme
|
||||||
|
// {
|
||||||
border = colours.green.bright;
|
border = colours.green.bright;
|
||||||
indicator = colours.green.bright;
|
indicator = colours.green.bright;
|
||||||
childBorder = colours.green.bright;
|
childBorder = colours.green.bright;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
bars = [{
|
bars = [
|
||||||
|
{
|
||||||
workspaceButtons = false;
|
workspaceButtons = false;
|
||||||
fonts = {names = ["Sans"]; size = 8.0;};
|
fonts = {
|
||||||
|
names = ["Sans"];
|
||||||
|
size = 8.0;
|
||||||
|
};
|
||||||
mode = "hide"; # "dock"
|
mode = "hide"; # "dock"
|
||||||
position = "bottom";
|
position = "bottom";
|
||||||
colors = rec {
|
colors = rec {
|
||||||
@@ -155,7 +173,8 @@ in {
|
|||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
})
|
})
|
||||||
}";
|
}";
|
||||||
}];
|
}
|
||||||
|
];
|
||||||
modes.resize = {
|
modes.resize = {
|
||||||
"Escape" = ''mode "default"'';
|
"Escape" = ''mode "default"'';
|
||||||
"Return" = ''mode "default"'';
|
"Return" = ''mode "default"'';
|
||||||
|
|||||||
@@ -1,13 +1,17 @@
|
|||||||
{
|
{
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
allowedTCPPortRanges = [{
|
allowedTCPPortRanges = [
|
||||||
|
{
|
||||||
from = 1714;
|
from = 1714;
|
||||||
to = 1764;
|
to = 1764;
|
||||||
}];
|
}
|
||||||
allowedUDPPortRanges = [{
|
];
|
||||||
|
allowedUDPPortRanges = [
|
||||||
|
{
|
||||||
from = 1714;
|
from = 1714;
|
||||||
to = 1764;
|
to = 1764;
|
||||||
}];
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users.me = {
|
home-manager.users.me = {
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let commaSep = builtins.concatStringsSep ",";
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
commaSep = builtins.concatStringsSep ",";
|
||||||
in {
|
in {
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
layout = commaSep ["de" "gr"];
|
layout = commaSep ["de" "gr"];
|
||||||
@@ -12,6 +16,5 @@ in {
|
|||||||
console.keyMap = "de";
|
console.keyMap = "de";
|
||||||
|
|
||||||
# improve held key rate
|
# improve held key rate
|
||||||
services.xserver.displayManager.sessionCommands =
|
services.xserver.displayManager.sessionCommands = "${pkgs.xorg.xset}/bin/xset r rate 300 50";
|
||||||
"${pkgs.xorg.xset}/bin/xset r rate 300 50";
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
davHome = "~/.local/share/dav";
|
davHome = "~/.local/share/dav";
|
||||||
kmeinCloud = {
|
kmeinCloud = {
|
||||||
davEndpoint = "https://cloud.xn--kiern-0qa.de/remote.php/dav";
|
davEndpoint = "https://cloud.xn--kiern-0qa.de/remote.php/dav";
|
||||||
@@ -11,8 +15,7 @@ let
|
|||||||
username = "kmein";
|
username = "kmein";
|
||||||
password = lib.fileContents <secrets/nextcloud-fysi/password>;
|
password = lib.fileContents <secrets/nextcloud-fysi/password>;
|
||||||
};
|
};
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
environment.systemPackages = [pkgs.khal pkgs.vdirsyncer pkgs.khard pkgs.todoman];
|
environment.systemPackages = [pkgs.khal pkgs.vdirsyncer pkgs.khard pkgs.todoman];
|
||||||
|
|
||||||
systemd.user.services.vdirsyncer = {
|
systemd.user.services.vdirsyncer = {
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ lib, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
systemd.services.lb-subscription = {
|
systemd.services.lb-subscription = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wants = ["network-online.target"];
|
wants = ["network-online.target"];
|
||||||
|
|||||||
@@ -21,7 +21,6 @@
|
|||||||
"x-scheme-handler/webcal" = "brave-browser.desktop";
|
"x-scheme-handler/webcal" = "brave-browser.desktop";
|
||||||
"inode/directory" = "pcmanfm.desktop";
|
"inode/directory" = "pcmanfm.desktop";
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ config, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
services.nginx.virtualHosts.default = {
|
services.nginx.virtualHosts.default = {
|
||||||
locations."= /stub_status".extraConfig = "stub_status;";
|
locations."= /stub_status".extraConfig = "stub_status;";
|
||||||
};
|
};
|
||||||
@@ -43,14 +46,21 @@
|
|||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
ExecStart = ''
|
ExecStart = ''
|
||||||
${pkgs.grafana-loki}/bin/promtail --config.file ${(pkgs.formats.yaml {}).generate "promtail.yaml" {
|
${pkgs.grafana-loki}/bin/promtail --config.file ${
|
||||||
|
(pkgs.formats.yaml {}).generate "promtail.yaml" {
|
||||||
server = {
|
server = {
|
||||||
http_listen_port = 28183;
|
http_listen_port = 28183;
|
||||||
grpc_listen_port = 0;
|
grpc_listen_port = 0;
|
||||||
};
|
};
|
||||||
positions.filename = "/tmp/positions.yaml";
|
positions.filename = "/tmp/positions.yaml";
|
||||||
clients = [
|
clients = [
|
||||||
{ url = "http://${if config.networking.hostName == "makanek" then "127.0.0.1" else "makanek.r"}:3100/loki/api/v1/push"; }
|
{
|
||||||
|
url = "http://${
|
||||||
|
if config.networking.hostName == "makanek"
|
||||||
|
then "127.0.0.1"
|
||||||
|
else "makanek.r"
|
||||||
|
}:3100/loki/api/v1/push";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
scrape_configs = [
|
scrape_configs = [
|
||||||
{
|
{
|
||||||
@@ -68,7 +78,8 @@
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}}
|
}
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,13 +1,24 @@
|
|||||||
{ pkgs, lib, ... }: let
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
swallow = command: "${pkgs.scripts.swallow}/bin/swallow ${command}";
|
swallow = command: "${pkgs.scripts.swallow}/bin/swallow ${command}";
|
||||||
nixpkgs-unstable = import <nixpkgs-unstable> { config.allowUnfree = true; };
|
|
||||||
in {
|
in {
|
||||||
environment.shellAliases.smpv = swallow "mpv";
|
environment.shellAliases.smpv = swallow "mpv";
|
||||||
|
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(self: super: {
|
||||||
|
mpv = config.home-manager.users.me.programs.mpv.finalPackage;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
home-manager.users.me = {
|
home-manager.users.me = {
|
||||||
programs.mpv = {
|
programs.mpv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = {
|
config = {
|
||||||
|
ytdl-format = "bestvideo[height<=?720][fps<=?30][vcodec!=?vp9]+bestaudio/best";
|
||||||
ytdl-raw-options = lib.concatStringsSep "," [''sub-lang="de,en"'' "write-sub=" "write-auto-sub="];
|
ytdl-raw-options = lib.concatStringsSep "," [''sub-lang="de,en"'' "write-sub=" "write-auto-sub="];
|
||||||
screenshot-template = "%F-%wH%wM%wS-%#04n";
|
screenshot-template = "%F-%wH%wM%wS-%#04n";
|
||||||
};
|
};
|
||||||
@@ -22,7 +33,8 @@ in {
|
|||||||
"Alt+j" = "add video-pan-y -0.05";
|
"Alt+j" = "add video-pan-y -0.05";
|
||||||
};
|
};
|
||||||
scripts = [
|
scripts = [
|
||||||
nixpkgs-unstable.mpvScripts.youtube-quality
|
pkgs.mpvScripts.youtube-quality
|
||||||
|
(pkgs.callPackage <niveum/packages/mpv-visualizer.nix> {})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
mainMailbox = "posteo";
|
mainMailbox = "posteo";
|
||||||
|
|
||||||
accounts.uni = {
|
accounts.uni = {
|
||||||
@@ -113,13 +116,13 @@ let
|
|||||||
trash = "[Gmail]/Papierkorb";
|
trash = "[Gmail]/Papierkorb";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
environment.systemPackages = [pkgs.neomutt];
|
environment.systemPackages = [pkgs.neomutt];
|
||||||
environment.shellAliases.mua = "${pkgs.neomutt}/bin/neomutt -f ${mainMailbox}←";
|
environment.shellAliases.mua = "${pkgs.neomutt}/bin/neomutt -f ${mainMailbox}←";
|
||||||
|
|
||||||
home-manager.users.me.xdg.configFile."neomutt/neomuttrc".text = ''
|
home-manager.users.me.xdg.configFile."neomutt/neomuttrc".text = ''
|
||||||
set mailcap_path = ${pkgs.writeText "mailcap" ''
|
set mailcap_path = ${
|
||||||
|
pkgs.writeText "mailcap" ''
|
||||||
text/plain; $EDITOR %s ;
|
text/plain; $EDITOR %s ;
|
||||||
text/html; ${pkgs.lynx}/bin/lynx -assume_charset=%{charset} -display_charset=utf-8 -dump %s; nametemplate=%s.html; copiousoutput;
|
text/html; ${pkgs.lynx}/bin/lynx -assume_charset=%{charset} -display_charset=utf-8 -dump %s; nametemplate=%s.html; copiousoutput;
|
||||||
image/*; ${pkgs.sxiv}/bin/sxiv %s ;
|
image/*; ${pkgs.sxiv}/bin/sxiv %s ;
|
||||||
@@ -128,7 +131,8 @@ in
|
|||||||
application/pdf; ${pkgs.zathura}/bin/zathura %s ;
|
application/pdf; ${pkgs.zathura}/bin/zathura %s ;
|
||||||
application/pgp-encrypted; ${pkgs.gnupg}/bin/gpg -d '%s'; copiousoutput;
|
application/pgp-encrypted; ${pkgs.gnupg}/bin/gpg -d '%s'; copiousoutput;
|
||||||
application/pgp-keys; ${pkgs.gnupg}/bin/gpg --import '%s'; copiousoutput;
|
application/pgp-keys; ${pkgs.gnupg}/bin/gpg --import '%s'; copiousoutput;
|
||||||
''}:$mailcap_path
|
''
|
||||||
|
}:$mailcap_path
|
||||||
|
|
||||||
set sidebar_visible
|
set sidebar_visible
|
||||||
set sidebar_format = "%D%?F? [%F]?%* %?N?%N/?%S"
|
set sidebar_format = "%D%?F? [%F]?%* %?N?%N/?%S"
|
||||||
@@ -180,21 +184,29 @@ in
|
|||||||
|
|
||||||
set header_cache="~/.cache/mutt" message_cachedir="~/.cache/mutt"
|
set header_cache="~/.cache/mutt" message_cachedir="~/.cache/mutt"
|
||||||
|
|
||||||
source ${pkgs.writeText "accounts.neomuttrc" ''
|
source ${
|
||||||
|
pkgs.writeText "accounts.neomuttrc" ''
|
||||||
set realname = "Kierán Meinhardt"
|
set realname = "Kierán Meinhardt"
|
||||||
account-hook . 'unset imap_user imap_pass smtp_user smtp_pass'
|
account-hook . 'unset imap_user imap_pass smtp_user smtp_pass'
|
||||||
# set accordingly: postponed trash record
|
# set accordingly: postponed trash record
|
||||||
${lib.concatStringsSep "\n\n" (lib.mapAttrsToList (name: account: let imapRoot = "imaps://${account.user}@${account.imap}"; in ''
|
${
|
||||||
|
lib.concatStringsSep "\n\n" (lib.mapAttrsToList (name: account: let
|
||||||
|
imapRoot = "imaps://${account.user}@${account.imap}";
|
||||||
|
in ''
|
||||||
account-hook ${account.user}@${account.imap} 'set imap_user="${account.user}" imap_pass="${account.password}"'
|
account-hook ${account.user}@${account.imap} 'set imap_user="${account.user}" imap_pass="${account.password}"'
|
||||||
account-hook ${account.user}@${account.smtp} 'set smtp_user="${account.user}" smtp_pass="${account.password}"'
|
account-hook ${account.user}@${account.smtp} 'set smtp_user="${account.user}" smtp_pass="${account.password}"'
|
||||||
folder-hook ${account.user}@${account.imap} 'set smtp_url="${account.smtpSettings "${account.user}@${account.smtp}"}" from="${account.address}" record="${imapRoot}/${account.folders.sent}" postponed="${imapRoot}/${account.folders.drafts}" trash="${imapRoot}/${account.folders.trash}"'
|
folder-hook ${account.user}@${account.imap} 'set smtp_url="${account.smtpSettings "${account.user}@${account.smtp}"}" from="${account.address}" record="${imapRoot}/${account.folders.sent}" postponed="${imapRoot}/${account.folders.drafts}" trash="${imapRoot}/${account.folders.trash}"'
|
||||||
named-mailboxes "${name}←" "${imapRoot}" "${name}→" "${imapRoot}/${account.folders.sent}"
|
named-mailboxes "${name}←" "${imapRoot}" "${name}→" "${imapRoot}/${account.folders.sent}"
|
||||||
'') accounts)}
|
'')
|
||||||
''}
|
accounts)
|
||||||
|
}
|
||||||
|
''
|
||||||
|
}
|
||||||
|
|
||||||
set spoolfile="${mainMailbox}"
|
set spoolfile="${mainMailbox}"
|
||||||
|
|
||||||
source ${pkgs.writeText "colors.neomuttrc" ''
|
source ${
|
||||||
|
pkgs.writeText "colors.neomuttrc" ''
|
||||||
# Default index colors:
|
# Default index colors:
|
||||||
color index_number blue default
|
color index_number blue default
|
||||||
color index red default '.*'
|
color index red default '.*'
|
||||||
@@ -243,6 +255,7 @@ in
|
|||||||
mono body bold "^gpg: Good signature"
|
mono body bold "^gpg: Good signature"
|
||||||
mono body bold "^gpg: BAD signature from.*"
|
mono body bold "^gpg: BAD signature from.*"
|
||||||
color body red default "([a-z][a-z0-9+-]*://(((([a-z0-9_.!~*'();:&=+$,-]|%[0-9a-f][0-9a-f])*@)?((([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+)(:[0-9]+)?)|([a-z0-9_.!~*'()$,;:@&=+-]|%[0-9a-f][0-9a-f])+)(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?(#([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?|(www|ftp)\\.(([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?(:[0-9]+)?(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?(#([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?)[^].,:;!)? \t\r\n<>\"]"
|
color body red default "([a-z][a-z0-9+-]*://(((([a-z0-9_.!~*'();:&=+$,-]|%[0-9a-f][0-9a-f])*@)?((([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+)(:[0-9]+)?)|([a-z0-9_.!~*'()$,;:@&=+-]|%[0-9a-f][0-9a-f])+)(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?(#([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?|(www|ftp)\\.(([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?(:[0-9]+)?(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?(#([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?)[^].,:;!)? \t\r\n<>\"]"
|
||||||
''}
|
''
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,9 @@
|
|||||||
environment.shellAliases.view = "nvim -R";
|
environment.shellAliases.view = "nvim -R";
|
||||||
|
|
||||||
nixpkgs.config.packageOverrides = pkgs: {
|
nixpkgs.config.packageOverrides = pkgs: {
|
||||||
vimPlugins = pkgs.vimPlugins // {
|
vimPlugins =
|
||||||
|
pkgs.vimPlugins
|
||||||
|
// {
|
||||||
cheat-sh-vim = pkgs.callPackage <niveum/packages/vimPlugins/cheat-sh.nix> {};
|
cheat-sh-vim = pkgs.callPackage <niveum/packages/vimPlugins/cheat-sh.nix> {};
|
||||||
vim-fetch = pkgs.callPackage <niveum/packages/vimPlugins/vim-fetch.nix> {};
|
vim-fetch = pkgs.callPackage <niveum/packages/vimPlugins/vim-fetch.nix> {};
|
||||||
vim-colors-paramount = pkgs.callPackage <niveum/packages/vimPlugins/vim-colors-paramount.nix> {};
|
vim-colors-paramount = pkgs.callPackage <niveum/packages/vimPlugins/vim-colors-paramount.nix> {};
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{ lib, pkgs, ... }:
|
{
|
||||||
let
|
lib,
|
||||||
profile = name: custom: lib.recursiveUpdate {
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
profile = name: custom:
|
||||||
|
lib.recursiveUpdate {
|
||||||
connection.id = name;
|
connection.id = name;
|
||||||
connection.type = "wifi";
|
connection.type = "wifi";
|
||||||
connection.interface-name = "wlp3s0";
|
connection.interface-name = "wlp3s0";
|
||||||
@@ -14,7 +18,8 @@ let
|
|||||||
ipv6.dns-search = "";
|
ipv6.dns-search = "";
|
||||||
ipv6.method = "auto";
|
ipv6.method = "auto";
|
||||||
proxy = {};
|
proxy = {};
|
||||||
} custom;
|
}
|
||||||
|
custom;
|
||||||
eduroamProfile = {
|
eduroamProfile = {
|
||||||
connection.uuid = "eae9fee6-a7d2-4120-a609-440b457d6fcf";
|
connection.uuid = "eae9fee6-a7d2-4120-a609-440b457d6fcf";
|
||||||
wifi-security = {
|
wifi-security = {
|
||||||
@@ -36,12 +41,17 @@ let
|
|||||||
phase2-auth = "pap";
|
phase2-auth = "pap";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
imports = [<niveum/modules/networkmanager-declarative.nix>];
|
imports = [<niveum/modules/networkmanager-declarative.nix>];
|
||||||
|
|
||||||
|
programs.nm-applet.enable = true;
|
||||||
|
|
||||||
networking.networkmanager = {
|
networking.networkmanager = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
packages = [
|
||||||
|
pkgs.networkmanager-openvpn
|
||||||
|
pkgs.networkmanager-fortisslvpn
|
||||||
|
];
|
||||||
wifi.macAddress = "random";
|
wifi.macAddress = "random";
|
||||||
ethernet.macAddress = "random";
|
ethernet.macAddress = "random";
|
||||||
unmanaged = ["docker*"];
|
unmanaged = ["docker*"];
|
||||||
@@ -82,5 +92,10 @@ in
|
|||||||
|
|
||||||
users.users.me.extraGroups = ["networkmanager"];
|
users.users.me.extraGroups = ["networkmanager"];
|
||||||
|
|
||||||
environment.systemPackages = [ pkgs.speedtest-cli ];
|
environment.systemPackages = [
|
||||||
|
pkgs.speedtest-cli
|
||||||
|
pkgs.networkmanager-openvpn
|
||||||
|
pkgs.networkmanagerapplet
|
||||||
|
pkgs.networkmanager-fortisslvpn
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
{ pkgs, config, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
ytdl-format = "'bestvideo[height<=?720][fps<=?30][vcodec!=?vp9]+bestaudio/best'";
|
ytdl-format = "'bestvideo[height<=?720][fps<=?30][vcodec!=?vp9]+bestaudio/best'";
|
||||||
|
|
||||||
youtube-download = "${pkgs.ts}/bin/ts ${pkgs.youtube-dl}/bin/youtube-dl -f ${ytdl-format} --add-metadata";
|
youtube-download = "${pkgs.ts}/bin/ts ${pkgs.youtube-dl}/bin/youtube-dl -f ${ytdl-format} --add-metadata";
|
||||||
|
|
||||||
newsboat-home =
|
newsboat-home = "${config.users.users.me.home}/cloud/Seafile/Documents/newsboat";
|
||||||
"${config.users.users.me.home}/cloud/Seafile/Documents/newsboat";
|
|
||||||
linkhandler-bin = "${pkgs.scripts.linkhandler}/bin/linkhandler";
|
linkhandler-bin = "${pkgs.scripts.linkhandler}/bin/linkhandler";
|
||||||
|
|
||||||
newsboat-config = pkgs.writeText "config" ''
|
newsboat-config = pkgs.writeText "config" ''
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
{ pkgs, ... }:
|
{pkgs, ...}: {
|
||||||
{
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
overlays = [
|
overlays = [
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
openweathermap-repo = pkgs.fetchFromGitHub {
|
openweathermap-repo = pkgs.fetchFromGitHub {
|
||||||
owner = "ip1981";
|
owner = "ip1981";
|
||||||
repo = "openweathermap";
|
repo = "openweathermap";
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
hc = pkgs.callPackage <stockholm/tv/5pkgs/simple/hc.nix> {};
|
hc = pkgs.callPackage <stockholm/tv/5pkgs/simple/hc.nix> {};
|
||||||
worldradio = pkgs.callPackage <niveum/packages/worldradio.nix> {};
|
worldradio = pkgs.callPackage <niveum/packages/worldradio.nix> {};
|
||||||
menstruation = pkgs.callPackage <menstruation-backend> {};
|
menstruation = pkgs.callPackage <menstruation-backend> {};
|
||||||
@@ -7,7 +10,10 @@ let
|
|||||||
|
|
||||||
nixpkgs-unstable = import <nixpkgs-unstable> {config.allowUnfree = true;};
|
nixpkgs-unstable = import <nixpkgs-unstable> {config.allowUnfree = true;};
|
||||||
|
|
||||||
zoteroStyle = { name, sha256 }: {
|
zoteroStyle = {
|
||||||
|
name,
|
||||||
|
sha256,
|
||||||
|
}: {
|
||||||
name = "${name}.csl";
|
name = "${name}.csl";
|
||||||
path = pkgs.fetchurl {
|
path = pkgs.fetchurl {
|
||||||
url = "https://www.zotero.org/styles/${name}";
|
url = "https://www.zotero.org/styles/${name}";
|
||||||
@@ -17,20 +23,21 @@ let
|
|||||||
cslDirectory = pkgs.linkFarm "citation-styles" [
|
cslDirectory = pkgs.linkFarm "citation-styles" [
|
||||||
(zoteroStyle {
|
(zoteroStyle {
|
||||||
name = "chicago-author-date-de";
|
name = "chicago-author-date-de";
|
||||||
sha256 = "0fz0xn46rkciblr34a7x2v60j0lbq9l3fmzi43iphph27m0czn6s";
|
sha256 = "sha256-ddMYk4A9DJQhx9ldkmF7PhwKuc7wUSr26uHHGAze9Ps=";
|
||||||
})
|
})
|
||||||
(zoteroStyle {
|
(zoteroStyle {
|
||||||
name = "din-1505-2";
|
name = "din-1505-2";
|
||||||
sha256 = "1pvy1b7qm13mnph7z365rrz1j082bl2y8ih73rhzd0zd6dz1jyjq";
|
sha256 = "sha256-bXZbB850fek8J6wMVFL32ndI7F4wiKKr1qUC71ezreE=";
|
||||||
})
|
})
|
||||||
(zoteroStyle {
|
(zoteroStyle {
|
||||||
name = "apa";
|
name = "apa";
|
||||||
sha256 = "1878vxp0y0h05yzaghnd51n981623mxskw3lsdyzmffqhihvv111";
|
sha256 = "sha256-yq4fW6hQknycLjaj5fPbXLrQlGBp5myXiOSHBU90jEc=";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
astrolog = nixpkgs-unstable.astrolog.overrideAttrs (old:
|
||||||
astrolog = nixpkgs-unstable.astrolog.overrideAttrs (old: old // {
|
old
|
||||||
|
// {
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
${old.installPhase}
|
${old.installPhase}
|
||||||
# set sensible defaults
|
# set sensible defaults
|
||||||
@@ -50,7 +57,6 @@ let
|
|||||||
});
|
});
|
||||||
|
|
||||||
recht = pkgs.callPackage <recht> {};
|
recht = pkgs.callPackage <recht> {};
|
||||||
|
|
||||||
in {
|
in {
|
||||||
home-manager.users.me.home.file = {
|
home-manager.users.me.home.file = {
|
||||||
".csl".source = cslDirectory;
|
".csl".source = cslDirectory;
|
||||||
@@ -115,11 +121,13 @@ in {
|
|||||||
xorg.xkill # kill by clicking
|
xorg.xkill # kill by clicking
|
||||||
audacity
|
audacity
|
||||||
calibre
|
calibre
|
||||||
|
electrum
|
||||||
inkscape
|
inkscape
|
||||||
astrolog
|
astrolog
|
||||||
anki # flashcards
|
anki # flashcards
|
||||||
jbofihe # lojbanic software
|
jbofihe # lojbanic software
|
||||||
nixpkgs-unstable.zoom-us # video conferencing
|
nixpkgs-unstable.zoom-us # video conferencing
|
||||||
|
nixpkgs-unstable.alejandra # nix formatter
|
||||||
pdfgrep # search in pdf
|
pdfgrep # search in pdf
|
||||||
pdftk # pdf toolkit
|
pdftk # pdf toolkit
|
||||||
mupdf
|
mupdf
|
||||||
@@ -153,7 +161,7 @@ in {
|
|||||||
scripts.vimv
|
scripts.vimv
|
||||||
scripts.swallow # window swallowing
|
scripts.swallow # window swallowing
|
||||||
scripts.literature-quote
|
scripts.literature-quote
|
||||||
scripts.nav # json navigation
|
jless # less(1) for json
|
||||||
scripts.notetags
|
scripts.notetags
|
||||||
scripts.booksplit
|
scripts.booksplit
|
||||||
scripts.dmenurandr
|
scripts.dmenurandr
|
||||||
@@ -197,7 +205,7 @@ in {
|
|||||||
(pkgs.writers.writeDashBin "ncmpcpp-zaatar" ''MPD_HOST=${(import <niveum/lib/local-network.nix>).zaatar} exec ${pkgs.ncmpcpp}/bin/ncmpcpp "$@"'')
|
(pkgs.writers.writeDashBin "ncmpcpp-zaatar" ''MPD_HOST=${(import <niveum/lib/local-network.nix>).zaatar} exec ${pkgs.ncmpcpp}/bin/ncmpcpp "$@"'')
|
||||||
(pkgs.writers.writeDashBin "mpc-zaatar" ''MPD_HOST=${(import <niveum/lib/local-network.nix>).zaatar} exec ${pkgs.mpc_cli}/bin/mpc "$@"'')
|
(pkgs.writers.writeDashBin "mpc-zaatar" ''MPD_HOST=${(import <niveum/lib/local-network.nix>).zaatar} exec ${pkgs.mpc_cli}/bin/mpc "$@"'')
|
||||||
|
|
||||||
nixpkgs-unstable.spotify
|
spotify
|
||||||
ncspot
|
ncspot
|
||||||
playerctl
|
playerctl
|
||||||
|
|
||||||
@@ -253,12 +261,15 @@ in {
|
|||||||
binutils # for strip, ld, ...
|
binutils # for strip, ld, ...
|
||||||
# nightly.rust
|
# nightly.rust
|
||||||
shellcheck
|
shellcheck
|
||||||
];
|
|
||||||
|
|
||||||
|
(pkgs.writers.writeDashBin "hass-cli" ''
|
||||||
|
HASS_SERVER=http://zaatar.r:8123 HASS_TOKEN=${lib.strings.fileContents <secrets/hass/token>} exec ${pkgs.home-assistant-cli}/bin/hass-cli "$@"
|
||||||
|
'')
|
||||||
|
scripts.rofi-hass
|
||||||
|
];
|
||||||
|
|
||||||
home-manager.users.me.xdg.configFile."pycodestyle".text = ''
|
home-manager.users.me.xdg.configFile."pycodestyle".text = ''
|
||||||
[pycodestyle]
|
[pycodestyle]
|
||||||
max-line-length = 110
|
max-line-length = 110
|
||||||
'';
|
'';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
11
configs/polkit.nix
Normal file
11
configs/polkit.nix
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{config, ...}: let
|
||||||
|
user = config.users.users.me.name;
|
||||||
|
in {
|
||||||
|
security.polkit.extraConfig = ''
|
||||||
|
polkit.addRule(function(action, subject) {
|
||||||
|
if (subject.user == "${user}" && action.id == "org.freedesktop.systemd1.manage-units") {
|
||||||
|
return polkit.Result.YES;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
'';
|
||||||
|
}
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
{ pkgs, config, ... }:
|
|
||||||
let
|
|
||||||
suspend = pkgs.writers.writeDash "suspend" "${pkgs.systemd}/bin/systemctl suspend";
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
suspend = pkgs.writers.writeDash "suspend" "${pkgs.systemd}/bin/systemctl suspend";
|
||||||
|
in {
|
||||||
imports = [<stockholm/krebs/3modules/power-action.nix>];
|
imports = [<stockholm/krebs/3modules/power-action.nix>];
|
||||||
|
|
||||||
krebs.power-action = {
|
krebs.power-action = {
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
{ pkgs, ... }:
|
{pkgs, ...}: let
|
||||||
let
|
|
||||||
inherit (import <niveum/lib>) localAddresses;
|
inherit (import <niveum/lib>) localAddresses;
|
||||||
hp-driver = pkgs.hplipWithPlugin;
|
hp-driver = pkgs.hplipWithPlugin;
|
||||||
in {
|
in {
|
||||||
@@ -13,7 +12,8 @@ in {
|
|||||||
extraBackends = [hp-driver];
|
extraBackends = [hp-driver];
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware.printers.ensurePrinters = [{
|
hardware.printers.ensurePrinters = [
|
||||||
|
{
|
||||||
name = "OfficeJet";
|
name = "OfficeJet";
|
||||||
location = "Zimmer";
|
location = "Zimmer";
|
||||||
deviceUri = "https://${localAddresses.officejet}";
|
deviceUri = "https://${localAddresses.officejet}";
|
||||||
@@ -25,9 +25,11 @@ in {
|
|||||||
OutputMode = "Normal";
|
OutputMode = "Normal";
|
||||||
ColorModel = "KGray"; # RGB CMYGray KGray
|
ColorModel = "KGray"; # RGB CMYGray KGray
|
||||||
};
|
};
|
||||||
}];
|
|
||||||
}
|
}
|
||||||
|
];
|
||||||
/* HP/hp-officejet_4650_series.ppd.gz
|
}
|
||||||
|
/*
|
||||||
|
HP/hp-officejet_4650_series.ppd.gz
|
||||||
drv:///hp/hpcups.drv/hp-officejet_4650_series.ppd
|
drv:///hp/hpcups.drv/hp-officejet_4650_series.ppd
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{ config, pkgs, ... }: {
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
<niveum/modules/retiolum.nix>
|
<niveum/modules/retiolum.nix>
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ config, pkgs, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (import <niveum/lib>) colours;
|
inherit (import <niveum/lib>) colours;
|
||||||
in {
|
in {
|
||||||
home-manager.users.me.programs.rofi = {
|
home-manager.users.me.programs.rofi = {
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, config, ... }:
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
services.xserver.displayManager.sessionCommands = "${pkgs.seafile-client}/bin/seafile-applet &";
|
services.xserver.displayManager.sessionCommands = "${pkgs.seafile-client}/bin/seafile-applet &";
|
||||||
|
|
||||||
home-manager.users.me.xdg.configFile = {
|
home-manager.users.me.xdg.configFile = {
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{ pkgs, config, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (import <niveum/lib>) sshPort kieran;
|
inherit (import <niveum/lib>) sshPort kieran;
|
||||||
in {
|
in {
|
||||||
services.xserver.displayManager.sessionCommands = "${pkgs.openssh}/bin/ssh-add";
|
services.xserver.displayManager.sessionCommands = "${pkgs.openssh}/bin/ssh-add";
|
||||||
@@ -25,6 +29,11 @@ in {
|
|||||||
user = "root";
|
user = "root";
|
||||||
port = sshPort;
|
port = sshPort;
|
||||||
};
|
};
|
||||||
|
tahina = {
|
||||||
|
hostname = "tahina.r";
|
||||||
|
user = "root";
|
||||||
|
port = sshPort;
|
||||||
|
};
|
||||||
manakish = {
|
manakish = {
|
||||||
hostname = "manakish.r";
|
hostname = "manakish.r";
|
||||||
user = "kfm";
|
user = "kfm";
|
||||||
@@ -48,6 +57,10 @@ in {
|
|||||||
hostname = "135.181.85.233";
|
hostname = "135.181.85.233";
|
||||||
user = "root";
|
user = "root";
|
||||||
};
|
};
|
||||||
|
oracle = {
|
||||||
|
hostname = "130.61.171.199";
|
||||||
|
user = "ubuntu";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
|
||||||
let
|
|
||||||
inherit (import <niveum/lib>) sshPort kieran;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (import <niveum/lib>) sshPort kieran;
|
||||||
|
in {
|
||||||
users.motd = "Welcome to ${config.networking.hostName}!";
|
users.motd = "Welcome to ${config.networking.hostName}!";
|
||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
dictionaries = {
|
dictionaries = {
|
||||||
lojban = {
|
lojban = {
|
||||||
jbo-deu = pkgs.fetchzip {
|
jbo-deu = pkgs.fetchzip {
|
||||||
@@ -100,7 +104,9 @@ let
|
|||||||
sha256 = "0cx086zvb86bmz7i8vnsch4cj4fb0cp165g4hig4982zakj6f2jd";
|
sha256 = "0cx086zvb86bmz7i8vnsch4cj4fb0cp165g4hig4982zakj6f2jd";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
sanskrit = let repo = "https://github.com/indic-dict/stardict-sanskrit/raw/4ebd2d3db5820f7cbe3a649c3d5aa8f83d19b29f"; in {
|
sanskrit = let
|
||||||
|
repo = "https://github.com/indic-dict/stardict-sanskrit/raw/4ebd2d3db5820f7cbe3a649c3d5aa8f83d19b29f";
|
||||||
|
in {
|
||||||
BoehtlingkRoth = pkgs.fetchzip {
|
BoehtlingkRoth = pkgs.fetchzip {
|
||||||
url = "${repo}/sa-head/german-entries/tars/Bohtlingk-and-Roth-Grosses-Petersburger-Worterbuch__2021-10-05_14-23-18Z__19MB.tar.gz";
|
url = "${repo}/sa-head/german-entries/tars/Bohtlingk-and-Roth-Grosses-Petersburger-Worterbuch__2021-10-05_14-23-18Z__19MB.tar.gz";
|
||||||
sha256 = "13414a8rgd7hd5ffar6nl68nk3ys60wjkgb7m11hp0ahaasmf6ly";
|
sha256 = "13414a8rgd7hd5ffar6nl68nk3ys60wjkgb7m11hp0ahaasmf6ly";
|
||||||
@@ -156,7 +162,8 @@ let
|
|||||||
|
|
||||||
makeStardictDataDir = dicts: pkgs.linkFarm "dictionaries" (lib.mapAttrsToList (name: path: {inherit name path;}) dicts);
|
makeStardictDataDir = dicts: pkgs.linkFarm "dictionaries" (lib.mapAttrsToList (name: path: {inherit name path;}) dicts);
|
||||||
|
|
||||||
makeStardict = name: dicts: pkgs.writers.writeDashBin name ''
|
makeStardict = name: dicts:
|
||||||
|
pkgs.writers.writeDashBin name ''
|
||||||
set -efu
|
set -efu
|
||||||
export SDCV_PAGER=${toString sdcvPager}
|
export SDCV_PAGER=${toString sdcvPager}
|
||||||
exec ${pkgs.sdcv}/bin/sdcv --color --only-data-dir --data-dir ${makeStardictDataDir dicts} "$@"
|
exec ${pkgs.sdcv}/bin/sdcv --color --only-data-dir --data-dir ${makeStardictDataDir dicts} "$@"
|
||||||
@@ -266,8 +273,7 @@ let
|
|||||||
s!</\?p[^>]*>!!gI
|
s!</\?p[^>]*>!!gI
|
||||||
" | less -FR
|
" | less -FR
|
||||||
'';
|
'';
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
environment.etc.stardict.source = toString (makeStardictDataDir ({
|
environment.etc.stardict.source = toString (makeStardictDataDir ({
|
||||||
Crum = pkgs.fetchzip {
|
Crum = pkgs.fetchzip {
|
||||||
url = "http://download.huzheng.org/misc/stardict-Coptic-English_all_dialects-2.4.2.tar.bz2";
|
url = "http://download.huzheng.org/misc/stardict-Coptic-English_all_dialects-2.4.2.tar.bz2";
|
||||||
@@ -281,7 +287,12 @@ in
|
|||||||
url = "https://github.com/latin-dict/Smith1890/releases/download/v1.0/Smith1890-stardict.zip";
|
url = "https://github.com/latin-dict/Smith1890/releases/download/v1.0/Smith1890-stardict.zip";
|
||||||
sha256 = "0vpsv62p2lrzmgys4d1swpnc6lqhdi7rxwkj2ngy3lz5dk3fysyb";
|
sha256 = "0vpsv62p2lrzmgys4d1swpnc6lqhdi7rxwkj2ngy3lz5dk3fysyb";
|
||||||
};
|
};
|
||||||
} // dictionaries.classics // dictionaries.sanskrit // dictionaries.oed // dictionaries.russian // dictionaries.englishGerman));
|
}
|
||||||
|
// dictionaries.classics
|
||||||
|
// dictionaries.sanskrit
|
||||||
|
// dictionaries.oed
|
||||||
|
// dictionaries.russian
|
||||||
|
// dictionaries.englishGerman));
|
||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
pkgs.goldendict
|
pkgs.goldendict
|
||||||
@@ -293,7 +304,6 @@ in
|
|||||||
(makeStardict "jbo" dictionaries.lojban)
|
(makeStardict "jbo" dictionaries.lojban)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
https://github.com/latin-dict/Georges1910/releases/download/v1.0/Georges1910-stardict.zip
|
https://github.com/latin-dict/Georges1910/releases/download/v1.0/Georges1910-stardict.zip
|
||||||
https://github.com/nikita-moor/latin-dictionary/releases/download/2020-02-14/LiddellScott1940-stardict.zip
|
https://github.com/nikita-moor/latin-dictionary/releases/download/2020-02-14/LiddellScott1940-stardict.zip
|
||||||
@@ -355,3 +365,4 @@ MacDonell = pkgs.fetchzip {
|
|||||||
stripRoot = false;
|
stripRoot = false;
|
||||||
};
|
};
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
important-directories = pkgs.writeText "directories" ''
|
important-directories = pkgs.writeText "directories" ''
|
||||||
h ~/
|
h ~/
|
||||||
d ~/cloud/Dropbox/
|
d ~/cloud/Dropbox/
|
||||||
@@ -15,8 +18,7 @@ in {
|
|||||||
environment.systemPackages = [pkgs.sxiv];
|
environment.systemPackages = [pkgs.sxiv];
|
||||||
|
|
||||||
# TODO fix
|
# TODO fix
|
||||||
home-manager.users.me.xdg.configFile."sxiv/exec/key-handler".source =
|
home-manager.users.me.xdg.configFile."sxiv/exec/key-handler".source = pkgs.writers.writeDash "key-handler" ''
|
||||||
pkgs.writers.writeDash "key-handler" ''
|
|
||||||
PATH=$PATH:${
|
PATH=$PATH:${
|
||||||
lib.makeBinPath [
|
lib.makeBinPath [
|
||||||
pkgs.gnused
|
pkgs.gnused
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
nixpkgs-unstable = import <nixpkgs-unstable> {};
|
nixpkgs-unstable = import <nixpkgs-unstable> {};
|
||||||
toSymbols = pkgs.writers.writeDash "to-symbols" ''
|
toSymbols = pkgs.writers.writeDash "to-symbols" ''
|
||||||
${pkgs.gnused}/bin/sed '
|
${pkgs.gnused}/bin/sed '
|
||||||
@@ -39,7 +42,7 @@ let
|
|||||||
'';
|
'';
|
||||||
in {
|
in {
|
||||||
niveum.telegramBots.transits = {
|
niveum.telegramBots.transits = {
|
||||||
enable = true;
|
enable = false;
|
||||||
time = "*:0/1";
|
time = "*:0/1";
|
||||||
token = lib.strings.fileContents <system-secrets/telegram/kmein.token>;
|
token = lib.strings.fileContents <system-secrets/telegram/kmein.token>;
|
||||||
chatIds = ["-1001796440545"];
|
chatIds = ["-1001796440545"];
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
autorenkalender-package = pkgs.fetchFromGitHub {
|
autorenkalender-package = pkgs.fetchFromGitHub {
|
||||||
owner = "kmein";
|
owner = "kmein";
|
||||||
repo = "autorenkalender";
|
repo = "autorenkalender";
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
telebots = pkgs.callPackage <telebots> {};
|
telebots = pkgs.callPackage <telebots> {};
|
||||||
reverseDirectory = "/run/telegram-reverse";
|
reverseDirectory = "/run/telegram-reverse";
|
||||||
proverbDirectory = "/run/telegram-proverb";
|
proverbDirectory = "/run/telegram-proverb";
|
||||||
@@ -14,7 +18,8 @@ in {
|
|||||||
<niveum/modules/telegram-bot.nix>
|
<niveum/modules/telegram-bot.nix>
|
||||||
];
|
];
|
||||||
|
|
||||||
systemd.tmpfiles.rules = map (path: tmpfilesConfig {
|
systemd.tmpfiles.rules = map (path:
|
||||||
|
tmpfilesConfig {
|
||||||
type = "d";
|
type = "d";
|
||||||
mode = "0750";
|
mode = "0750";
|
||||||
age = "1h";
|
age = "1h";
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
scripts = import <niveum/packages/scripts> {inherit pkgs lib;};
|
scripts = import <niveum/packages/scripts> {inherit pkgs lib;};
|
||||||
inherit (scripts) literature-quote;
|
inherit (scripts) literature-quote;
|
||||||
in {
|
in {
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
nachtischsatan-bot = {token}:
|
nachtischsatan-bot = {token}:
|
||||||
pkgs.writers.writePython3 "nachtischsatan-bot" {
|
pkgs.writers.writePython3 "nachtischsatan-bot" {
|
||||||
libraries = [pkgs.python3Packages.python-telegram-bot];
|
libraries = [pkgs.python3Packages.python-telegram-bot];
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
niveum.telegramBots.tlg-wotd = {
|
niveum.telegramBots.tlg-wotd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
time = "9:30";
|
time = "9:30";
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
{ lib, config, pkgs, ... }:
|
{
|
||||||
let
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
theme = (import <niveum/lib>).theme pkgs;
|
theme = (import <niveum/lib>).theme pkgs;
|
||||||
in {
|
in {
|
||||||
environment.systemPackages =
|
environment.systemPackages = [theme.gtk.package theme.icon.package theme.cursor.package];
|
||||||
[ theme.gtk.package theme.icon.package theme.cursor.package ];
|
|
||||||
|
|
||||||
services.xserver.displayManager.lightdm.greeters.gtk = {
|
services.xserver.displayManager.lightdm.greeters.gtk = {
|
||||||
theme = {inherit (theme.gtk) name package;};
|
theme = {inherit (theme.gtk) name package;};
|
||||||
|
|||||||
@@ -9,26 +9,44 @@
|
|||||||
keyMode = "vi";
|
keyMode = "vi";
|
||||||
clock24 = true;
|
clock24 = true;
|
||||||
terminal = "screen-256color";
|
terminal = "screen-256color";
|
||||||
|
baseIndex = 1;
|
||||||
|
aggressiveResize = true;
|
||||||
|
escapeTime = 50;
|
||||||
|
historyLimit = 7000;
|
||||||
|
shortcut = "a";
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
set -g mouse on
|
||||||
|
|
||||||
|
unbind *
|
||||||
|
bind * list-clients
|
||||||
|
|
||||||
|
# naVIgate
|
||||||
|
bind h select-pane -L
|
||||||
|
bind j select-pane -D
|
||||||
|
bind k select-pane -U
|
||||||
|
bind l select-pane -R
|
||||||
|
|
||||||
|
# Use C-h and C-l to cycle through panes
|
||||||
|
bind -r C-h select-window -t :-
|
||||||
|
bind -r C-l select-window -t :+
|
||||||
|
|
||||||
|
setw -g monitor-activity on
|
||||||
|
set -g visual-activity on
|
||||||
|
|
||||||
set -g status-interval 2
|
set -g status-interval 2
|
||||||
set -g status-left-length 32
|
set -g status-left-length 32
|
||||||
set -g status-right-length 150
|
set -g status-right-length 150
|
||||||
|
|
||||||
set -g status-bg default
|
set -g status-bg colour242
|
||||||
|
|
||||||
setw -g window-status-format "#[fg=colour12,bg=colour233] #I #[fg=white,bg=colour237] #W "
|
setw -g window-status-format "#[fg=colour12,bg=colour233] #I #[fg=white,bg=colour237] #W "
|
||||||
setw -g window-status-current-format "#[fg=colour12,bg=colour233] * #[fg=white,bg=colour237,bold] #W "
|
setw -g window-status-current-format "#[fg=colour12,bg=colour233] * #[fg=white,bg=colour237,bold] #W "
|
||||||
|
|
||||||
set -g status-left ""
|
set -g status-left ""
|
||||||
set -g status-right "#[fg=colour255,bg=colour237,bold] %Y-%m-%d #[default]#[fg=colour12,bg=colour233] %H:%M "
|
set -g status-right "#[fg=colour255,bg=colour237,bold] #(hostname -I) #[default]#[fg=colour12,bg=colour233] %FT%R "
|
||||||
set -g status-justify left
|
set -g status-justify left
|
||||||
|
|
||||||
set -g status-position bottom
|
set -g status-position bottom
|
||||||
|
|
||||||
set -g mouse on
|
|
||||||
|
|
||||||
unbind *
|
|
||||||
bind * list-clients
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{
|
{pkgs, ...}: {
|
||||||
services.tor.enable = true;
|
services.tor.enable = true;
|
||||||
services.tor.torsocks.enable = true;
|
environment.systemPackages = [pkgs.tor];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
{ pkgs, lib, ... }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (import <niveum/lib>) localAddresses;
|
inherit (import <niveum/lib>) localAddresses;
|
||||||
living-room-id = 131090;
|
living-room-id = 131090;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
imports = [<niveum/modules/traadfri.nix>];
|
imports = [<niveum/modules/traadfri.nix>];
|
||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
@@ -29,7 +31,7 @@ in
|
|||||||
bedroom = 131082;
|
bedroom = 131082;
|
||||||
living-room = living-room-id;
|
living-room = living-room-id;
|
||||||
bedside = 131087;
|
bedside = 131087;
|
||||||
|
chain = 131089;
|
||||||
};
|
};
|
||||||
bulbs.kette = 65570;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ pkgs, lib, ... }:
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [<stockholm/krebs/3modules/fetchWallpaper.nix>];
|
imports = [<stockholm/krebs/3modules/fetchWallpaper.nix>];
|
||||||
|
|
||||||
krebs.fetchWallpaper = {
|
krebs.fetchWallpaper = {
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ config, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
environment.systemPackages = [pkgs.watson];
|
environment.systemPackages = [pkgs.watson];
|
||||||
|
|
||||||
environment.variables.WATSON_DIR = "${config.users.users.me.home}/cloud/Seafile/Documents/watson";
|
environment.variables.WATSON_DIR = "${config.users.users.me.home}/cloud/Seafile/Documents/watson";
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{ config, pkgs, ... }: {
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
home-manager.users.me.home.file.".zshrc".text = ''
|
home-manager.users.me.home.file.".zshrc".text = ''
|
||||||
# nothing to see here
|
# nothing to see here
|
||||||
'';
|
'';
|
||||||
|
|||||||
58
flake.lock
generated
58
flake.lock
generated
@@ -2,11 +2,11 @@
|
|||||||
"nodes": {
|
"nodes": {
|
||||||
"flake-utils": {
|
"flake-utils": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1638122382,
|
"lastModified": 1648297722,
|
||||||
"narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=",
|
"narHash": "sha256-W+qlPsiZd8F3XkzXOzAoR+mpFqzm3ekQkJNa+PIh1BQ=",
|
||||||
"owner": "numtide",
|
"owner": "numtide",
|
||||||
"repo": "flake-utils",
|
"repo": "flake-utils",
|
||||||
"rev": "74f7e4319258e287b0f9cb95426c9853b282730b",
|
"rev": "0f8662f1319ad6abf89b3380dd2722369fc51ade",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -22,11 +22,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1639871969,
|
"lastModified": 1648834319,
|
||||||
"narHash": "sha256-6feWUnMygRzA9tzkrfAzpA5/NBYg75bkFxnqb1DtD7E=",
|
"narHash": "sha256-i5Aj4Aw64D/A0X6XW5LxSS4XBnYj7gMz+kN4dpsbdk8=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "697cc8c68ed6a606296efbbe9614c32537078756",
|
"rev": "0bdbdea2e26c984b096f4f7d10e3c88536a980b0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -46,11 +46,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1632420452,
|
"lastModified": 1644957911,
|
||||||
"narHash": "sha256-ncK6vABW/Ku9XI0kqj1otarUfblryoQzSaOCnaZ0oSs=",
|
"narHash": "sha256-ggie/j7pdBqzDs4W7OiPmhqH9IGbXAbJxGqBdVxA8jA=",
|
||||||
"owner": "Mic92",
|
"owner": "Mic92",
|
||||||
"repo": "krops",
|
"repo": "krops",
|
||||||
"rev": "0388970c568905fedcbf429e5745aacd4f7a6633",
|
"rev": "86fb3d2ee94fd8306231853b323ed8804edf26ec",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -62,11 +62,11 @@
|
|||||||
"menstruation-backend": {
|
"menstruation-backend": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1634573652,
|
"lastModified": 1649545504,
|
||||||
"narHash": "sha256-FIj8oCOJO+Wqxr2o5MMqIShvzMJud4iUq3o8y4NIRvw=",
|
"narHash": "sha256-TVm3246ML7gWPeGm+bdb+Qo8o/7nve7sQ2hBdCZm3z8=",
|
||||||
"owner": "kmein",
|
"owner": "kmein",
|
||||||
"repo": "menstruation.rs",
|
"repo": "menstruation.rs",
|
||||||
"rev": "dd405fe2acf32441e8ac56e488e689bb1c4bea82",
|
"rev": "d9f3c6d53542fd7c7ed191e37cf4e342d4a47bcb",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -109,27 +109,27 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1641829252,
|
"lastModified": 1649490789,
|
||||||
"narHash": "sha256-CI0qi7k1Y4nFna+kdQtVCbN4ZEVwZcD/oIGgfTcUNrA=",
|
"narHash": "sha256-YrhVxwoofZSx/wLZ4GYET//8vS+uqWX572zvdmP/Etg=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5d3420c1285073d5061a5d88a533b347d1222750",
|
"rev": "c86185d20d708013caf97a6adaa8dc6d72313c75",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"ref": "release-21.11",
|
"ref": "nixos-21.11",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs-unstable": {
|
"nixpkgs-unstable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1641935776,
|
"lastModified": 1649541735,
|
||||||
"narHash": "sha256-8q/V9EgzyW0KvGnBjbTfQ19qoTCFqsEd1mF9DheCukw=",
|
"narHash": "sha256-JdOywA2jcdGCxNgu0dJA7ZNtaV7sS0HwuZg9YaXd94c=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "bd20b7f07fd337b2e85420edd642382a2cc0196d",
|
"rev": "c2b6e029cd1efa0efd37daab89264ef040ae5669",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -158,11 +158,11 @@
|
|||||||
"retiolum": {
|
"retiolum": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1643137996,
|
"lastModified": 1647444524,
|
||||||
"narHash": "sha256-Fvmq2i8l9drzU91uvHmx0eeqr06/o+y28RgVmwcTYZ4=",
|
"narHash": "sha256-N4T1UXLkYJMQqk65LkTDpW70ujXXeZ9xe5k+LOpznAI=",
|
||||||
"owner": "krebs",
|
"owner": "krebs",
|
||||||
"repo": "retiolum",
|
"repo": "retiolum",
|
||||||
"rev": "bbed4ffd74987bb9a577ae6290ed446c3f27f594",
|
"rev": "de6d7dc9bd671e65f2ee3004b6807625e7553e84",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -194,11 +194,11 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1639436812,
|
"lastModified": 1648400983,
|
||||||
"narHash": "sha256-6CajvfDo7t4ANgjc7DxqH7lI3WRE4MK8q3mBKAjk80k=",
|
"narHash": "sha256-I9ADWgUN1orbnXPBW4kulHpv8wkx6C8zsQcg9wphpPg=",
|
||||||
"owner": "kmein",
|
"owner": "kmein",
|
||||||
"repo": "scripts",
|
"repo": "scripts",
|
||||||
"rev": "d34a8161ba11135a45d3141dc9af482db945d63c",
|
"rev": "f5df67a2416d8f05a7dbfea269c44668854c7887",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -210,11 +210,11 @@
|
|||||||
"stockholm": {
|
"stockholm": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1641747862,
|
"lastModified": 1649089964,
|
||||||
"narHash": "sha256-gAGM3sxCP//k83CUow3ZpeHQCeuW62YJ6kWvWd8D1vk=",
|
"narHash": "sha256-ybuVI8rnpMyBUoyoIXJ1e3QBMBIOoEgKTiFzIPfzy8A=",
|
||||||
"ref": "master",
|
"ref": "master",
|
||||||
"rev": "f67bd5783d6ed2be836c7714ea38cbb3f7ac7257",
|
"rev": "b3833baee96d7bce2c54295110b40c646468a1ff",
|
||||||
"revCount": 10285,
|
"revCount": 10500,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://cgit.lassul.us/stockholm"
|
"url": "https://cgit.lassul.us/stockholm"
|
||||||
},
|
},
|
||||||
|
|||||||
118
flake.nix
118
flake.nix
@@ -2,7 +2,7 @@
|
|||||||
description = "niveum: packages, modules, systems";
|
description = "niveum: packages, modules, systems";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/release-21.11";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-21.11";
|
||||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/master";
|
nixpkgs-unstable.url = "github:NixOS/nixpkgs/master";
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
@@ -16,42 +16,75 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# legacy
|
# legacy
|
||||||
menstruation-backend = { url = "github:kmein/menstruation.rs"; flake = false; };
|
menstruation-backend = {
|
||||||
menstruation-telegram = { url = "github:kmein/menstruation-telegram"; flake = false; };
|
url = "github:kmein/menstruation.rs";
|
||||||
nix-writers = { url = "git+https://cgit.krebsco.de/nix-writers"; flake = false; };
|
flake = false;
|
||||||
recht = { url = "github:kmein/recht"; flake = false; };
|
};
|
||||||
retiolum = { url = "github:krebs/retiolum"; flake = false; };
|
menstruation-telegram = {
|
||||||
scripts = { url = "github:kmein/scripts"; flake = false; };
|
url = "github:kmein/menstruation-telegram";
|
||||||
stockholm = { url = "git+https://cgit.lassul.us/stockholm"; flake = false; };
|
flake = false;
|
||||||
telebots = { url = "github:kmein/telebots"; flake = false; };
|
};
|
||||||
tinc-graph = { url = "github:kmein/tinc-graph"; flake = false; };
|
nix-writers = {
|
||||||
traadfri = { url = "github:kmein/traadfri"; flake = false; };
|
url = "git+https://cgit.krebsco.de/nix-writers";
|
||||||
tuna = { url = "github:kmein/tuna"; flake = false; };
|
flake = false;
|
||||||
|
};
|
||||||
|
recht = {
|
||||||
|
url = "github:kmein/recht";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
retiolum = {
|
||||||
|
url = "github:krebs/retiolum";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
scripts = {
|
||||||
|
url = "github:kmein/scripts";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
stockholm = {
|
||||||
|
url = "git+https://cgit.lassul.us/stockholm";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
telebots = {
|
||||||
|
url = "github:kmein/telebots";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
tinc-graph = {
|
||||||
|
url = "github:kmein/tinc-graph";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
traadfri = {
|
||||||
|
url = "github:kmein/traadfri";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
tuna = {
|
||||||
|
url = "github:kmein/tuna";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs = {
|
||||||
{ self
|
self,
|
||||||
, flake-utils
|
flake-utils,
|
||||||
, home-manager
|
home-manager,
|
||||||
, krops
|
krops,
|
||||||
, menstruation-backend
|
menstruation-backend,
|
||||||
, menstruation-telegram
|
menstruation-telegram,
|
||||||
, nix-writers
|
nix-writers,
|
||||||
, nixpkgs
|
nixpkgs,
|
||||||
, nixpkgs-unstable
|
nixpkgs-unstable,
|
||||||
, recht
|
recht,
|
||||||
, retiolum
|
retiolum,
|
||||||
, scripts
|
scripts,
|
||||||
, stockholm
|
stockholm,
|
||||||
, telebots
|
telebots,
|
||||||
, tinc-graph
|
tinc-graph,
|
||||||
, traadfri
|
traadfri,
|
||||||
, tuna
|
tuna,
|
||||||
}@inputs:
|
} @ inputs: let
|
||||||
let
|
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
source = name: {
|
source = name:
|
||||||
|
{
|
||||||
niveum.file = toString ./.;
|
niveum.file = toString ./.;
|
||||||
nixos-config.symlink = "niveum/systems/${name}/configuration.nix";
|
nixos-config.symlink = "niveum/systems/${name}/configuration.nix";
|
||||||
system-secrets.pass = {
|
system-secrets.pass = {
|
||||||
@@ -62,11 +95,18 @@
|
|||||||
dir = toString ~/.password-store;
|
dir = toString ~/.password-store;
|
||||||
name = "shared";
|
name = "shared";
|
||||||
};
|
};
|
||||||
} // nixpkgs.lib.mapAttrs' (name: value: {
|
}
|
||||||
|
// nixpkgs.lib.mapAttrs' (name: value: {
|
||||||
inherit name;
|
inherit name;
|
||||||
value.file = toString value;
|
value.file = toString value;
|
||||||
}) (nixpkgs.lib.filterAttrs (name: _: !builtins.elem name ["flake-utils" "krops" "self"]) inputs);
|
}) (nixpkgs.lib.filterAttrs (name: _: !builtins.elem name ["flake-utils" "krops" "self"]) inputs);
|
||||||
deployScriptFor = {name, host}: let inherit (import ./lib/default.nix) sshPort; in toString (krops.packages.${system}.writeDeploy "deploy-${name}" {
|
deployScriptFor = {
|
||||||
|
name,
|
||||||
|
host,
|
||||||
|
}: let
|
||||||
|
inherit (import ./lib/default.nix) sshPort;
|
||||||
|
in
|
||||||
|
toString (krops.packages.${system}.writeDeploy "deploy-${name}" {
|
||||||
source = krops.lib.evalSource [(source name)];
|
source = krops.lib.evalSource [(source name)];
|
||||||
target = "root@${host}:${toString sshPort}";
|
target = "root@${host}:${toString sshPort}";
|
||||||
});
|
});
|
||||||
@@ -77,7 +117,10 @@
|
|||||||
name = "deploy-${name}";
|
name = "deploy-${name}";
|
||||||
value = {
|
value = {
|
||||||
type = "app";
|
type = "app";
|
||||||
program = deployScriptFor { inherit name; host = "${name}.r"; };
|
program = deployScriptFor {
|
||||||
|
inherit name;
|
||||||
|
host = "${name}.r";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
ciScripts = forSystems (name: {
|
ciScripts = forSystems (name: {
|
||||||
@@ -87,6 +130,7 @@
|
|||||||
program = import ./ci.nix {inherit name system inputs;};
|
program = import ./ci.nix {inherit name system inputs;};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
in deployScripts // ciScripts;
|
in
|
||||||
|
deployScripts // ciScripts;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,13 @@
|
|||||||
rec {
|
rec {
|
||||||
tmpfilesConfig = {type, path, mode ? "-", user ? "-", group ? "-", age ? "-", argument ? "-"}: "${type} '${path}' ${mode} ${user} ${group} ${age} ${argument}";
|
tmpfilesConfig = {
|
||||||
|
type,
|
||||||
|
path,
|
||||||
|
mode ? "-",
|
||||||
|
user ? "-",
|
||||||
|
group ? "-",
|
||||||
|
age ? "-",
|
||||||
|
argument ? "-",
|
||||||
|
}: "${type} '${path}' ${mode} ${user} ${group} ${age} ${argument}";
|
||||||
|
|
||||||
restic = rec {
|
restic = rec {
|
||||||
port = 3571;
|
port = 3571;
|
||||||
@@ -8,14 +16,25 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
firewall = lib: {
|
firewall = lib: {
|
||||||
accept = { source, protocol, dport }: "nixos-fw -s ${lib.escapeShellArg source} -p ${lib.escapeShellArg protocol} --dport ${lib.escapeShellArg (toString dport)} -j nixos-fw-accept";
|
accept = {
|
||||||
|
source,
|
||||||
|
protocol,
|
||||||
|
dport,
|
||||||
|
}: "nixos-fw -s ${lib.escapeShellArg source} -p ${lib.escapeShellArg protocol} --dport ${lib.escapeShellArg (toString dport)} -j nixos-fw-accept";
|
||||||
addRules = lib.concatMapStringsSep "\n" (rule: "iptables -A ${rule}");
|
addRules = lib.concatMapStringsSep "\n" (rule: "iptables -A ${rule}");
|
||||||
removeRules = lib.concatMapStringsSep "\n" (rule: "iptables -D ${rule} || true");
|
removeRules = lib.concatMapStringsSep "\n" (rule: "iptables -D ${rule} || true");
|
||||||
};
|
};
|
||||||
|
|
||||||
serveHtml = file: pkgs: ''
|
serveHtml = file: pkgs: ''
|
||||||
default_type "text/html";
|
default_type "text/html";
|
||||||
root ${pkgs.linkFarm "fahrplan" [{ name = "index.html"; path = file; }]};
|
root ${
|
||||||
|
pkgs.linkFarm "fahrplan" [
|
||||||
|
{
|
||||||
|
name = "index.html";
|
||||||
|
path = file;
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
index index.html;
|
index index.html;
|
||||||
'';
|
'';
|
||||||
|
|
||||||
@@ -50,7 +69,8 @@ rec {
|
|||||||
github = "kmein";
|
github = "kmein";
|
||||||
email = "kmein@posteo.de";
|
email = "kmein@posteo.de";
|
||||||
name = "Kierán Meinhardt";
|
name = "Kierán Meinhardt";
|
||||||
sshKeys = pkgs: pkgs.lib.strings.splitString "\n" (pkgs.lib.strings.fileContents (pkgs.fetchurl {
|
sshKeys = pkgs:
|
||||||
|
pkgs.lib.strings.splitString "\n" (pkgs.lib.strings.fileContents (pkgs.fetchurl {
|
||||||
url = "https://github.com/kmein.keys";
|
url = "https://github.com/kmein.keys";
|
||||||
sha256 = "09c6ny0rmpid1m0pc1wsmb3wyy9g721lf4kv55i4lrp42b3i2d5b";
|
sha256 = "09c6ny0rmpid1m0pc1wsmb3wyy9g721lf4kv55i4lrp42b3i2d5b";
|
||||||
}));
|
}));
|
||||||
@@ -62,6 +82,7 @@ rec {
|
|||||||
manakish.id = "AJVBWR2-VFFAGZF-7ZF5JAX-T63GMOG-NZ446WK-MC5E6WK-6X6Q2HE-QQA2JQ3";
|
manakish.id = "AJVBWR2-VFFAGZF-7ZF5JAX-T63GMOG-NZ446WK-MC5E6WK-6X6Q2HE-QQA2JQ3";
|
||||||
toum.id = "CBJQXFF-FMFGWFU-2J6FMPR-SRDTSGX-7NHOYOH-CQCABKF-KQJMRJC-SDE24Q4";
|
toum.id = "CBJQXFF-FMFGWFU-2J6FMPR-SRDTSGX-7NHOYOH-CQCABKF-KQJMRJC-SDE24Q4";
|
||||||
zaatar.id = "CGHO6LK-ZJBAXBD-UWI7AH3-BXYARE6-EUIM7PE-O2FUCOM-VCCRNCM-IG34WQ7";
|
zaatar.id = "CGHO6LK-ZJBAXBD-UWI7AH3-BXYARE6-EUIM7PE-O2FUCOM-VCCRNCM-IG34WQ7";
|
||||||
|
tahina.id = "UKJ2CBO-EQPKQL4-3QLRUSG-SSYR6AB-CCCUTKU-CLPYR7N-RUI5A6Y-JTL5NA4";
|
||||||
};
|
};
|
||||||
|
|
||||||
ignorePaths = [
|
ignorePaths = [
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
{pkgs, path}: ''
|
{
|
||||||
|
pkgs,
|
||||||
|
path,
|
||||||
|
}: ''
|
||||||
<config>
|
<config>
|
||||||
<paths>
|
<paths>
|
||||||
<path recursive="1">${path}</path>
|
<path recursive="1">${path}</path>
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{ pkgs, wirelessInterface, colours, batteryName }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
wirelessInterface,
|
||||||
|
colours,
|
||||||
|
batteryName,
|
||||||
|
}: let
|
||||||
inherit (pkgs) lib;
|
inherit (pkgs) lib;
|
||||||
|
|
||||||
setsid = script:
|
setsid = script:
|
||||||
@@ -95,7 +99,13 @@ in {
|
|||||||
{
|
{
|
||||||
block = "custom";
|
block = "custom";
|
||||||
interval = 60 * 5;
|
interval = 60 * 5;
|
||||||
command = let spacetime = import <niveum/configs/spacetime.nix>; in pkgs.writers.writePython3 "sun.py" { libraries = [ pkgs.python3Packages.astral ]; flakeIgnore = [ "E121" "E501" ]; }
|
command = let
|
||||||
|
spacetime = import <niveum/configs/spacetime.nix>;
|
||||||
|
in
|
||||||
|
pkgs.writers.writePython3 "sun.py" {
|
||||||
|
libraries = [pkgs.python3Packages.astral];
|
||||||
|
flakeIgnore = ["E121" "E501"];
|
||||||
|
}
|
||||||
''
|
''
|
||||||
import astral
|
import astral
|
||||||
import astral.moon
|
import astral.moon
|
||||||
|
|||||||
143
lib/radio-news.html
Normal file
143
lib/radio-news.html
Normal file
@@ -0,0 +1,143 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<title>lassulus radio news</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 2fr 1fr;
|
||||||
|
grid-gap: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#news-list ul {
|
||||||
|
list-style: none;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#news-list li {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#news-list time {
|
||||||
|
display: block;
|
||||||
|
color: grey;
|
||||||
|
}
|
||||||
|
|
||||||
|
form label {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
form input,
|
||||||
|
form textarea {
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
main {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script>
|
||||||
|
const newsEndpoint = "http://prism.r:7999";
|
||||||
|
|
||||||
|
function isoString(date) {
|
||||||
|
return date.toISOString().slice(0, -5) + "Z";
|
||||||
|
}
|
||||||
|
|
||||||
|
function setNextNews() {
|
||||||
|
document.getElementById("next-news").innerHTML = (
|
||||||
|
60 - new Date().getUTCMinutes()
|
||||||
|
).toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
setInterval(setNextNews, 6000);
|
||||||
|
|
||||||
|
function fetchNews() {
|
||||||
|
fetch(newsEndpoint).then((response) => {
|
||||||
|
response.json().then((news) => {
|
||||||
|
const newsList = document.getElementById("news-list");
|
||||||
|
newsList.innerHTML = "";
|
||||||
|
const ul = document.createElement("ul");
|
||||||
|
for (const newsItem of news) {
|
||||||
|
const start = new Date(newsItem.from);
|
||||||
|
const end = new Date(newsItem.to);
|
||||||
|
|
||||||
|
const li = document.createElement("li");
|
||||||
|
|
||||||
|
const startDate = document.createElement("time");
|
||||||
|
startDate.className = "start";
|
||||||
|
startDate.title = start.toString();
|
||||||
|
startDate.setAttribute("datetime", isoString(start));
|
||||||
|
startDate.appendChild(document.createTextNode(isoString(start)));
|
||||||
|
|
||||||
|
const endDate = document.createElement("time");
|
||||||
|
endDate.className = "end";
|
||||||
|
endDate.title = end.toString();
|
||||||
|
endDate.setAttribute("datetime", isoString(end));
|
||||||
|
endDate.appendChild(document.createTextNode(isoString(end)));
|
||||||
|
|
||||||
|
li.appendChild(document.createTextNode(newsItem.text));
|
||||||
|
li.appendChild(startDate);
|
||||||
|
li.appendChild(endDate);
|
||||||
|
ul.appendChild(li);
|
||||||
|
}
|
||||||
|
newsList.appendChild(ul);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function sendNews(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
const formData = new FormData(event.target);
|
||||||
|
|
||||||
|
const request = new XMLHttpRequest();
|
||||||
|
request.open("POST", newsEndpoint, false); // synchronous
|
||||||
|
request.send(
|
||||||
|
JSON.stringify({
|
||||||
|
from: isoString(new Date(formData.get("from"))),
|
||||||
|
to: isoString(new Date(formData.get("to"))),
|
||||||
|
text: formData.get("text"),
|
||||||
|
})
|
||||||
|
);
|
||||||
|
location.reload();
|
||||||
|
}
|
||||||
|
|
||||||
|
window.onload = () => {
|
||||||
|
setNextNews();
|
||||||
|
fetchNews();
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<section>
|
||||||
|
<h1>Submit news</h1>
|
||||||
|
<form onsubmit="sendNews(event)">
|
||||||
|
<label>Start date</label>
|
||||||
|
<input type="datetime-local" name="from" required />
|
||||||
|
<label>End date</label>
|
||||||
|
<input type="datetime-local" name="to" required />
|
||||||
|
<label>News text</label>
|
||||||
|
<textarea name="text" rows="10" required></textarea>
|
||||||
|
<input type="submit" />
|
||||||
|
</form>
|
||||||
|
Next news report should start in <span id="next-news"></span> minutes.
|
||||||
|
</section>
|
||||||
|
<aside>
|
||||||
|
<h1>Planned news</h1>
|
||||||
|
<div id="news-list">
|
||||||
|
<em>No news planned yet.</em>
|
||||||
|
</div>
|
||||||
|
</aside>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -18,4 +18,9 @@
|
|||||||
ipv4 = "10.243.2.85";
|
ipv4 = "10.243.2.85";
|
||||||
ipv6 = "42:0:3c46:ac99:ae36:cb8:c551:ba27";
|
ipv6 = "42:0:3c46:ac99:ae36:cb8:c551:ba27";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tahina = {
|
||||||
|
ipv4 = "10.243.2.74";
|
||||||
|
ipv6 = "42:0:3c46:2923:1c90:872:edd6:306";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
619
lib/streams.nix
619
lib/streams.nix
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,6 @@ nnoremap <C-l> :Rg<CR>
|
|||||||
let g:fzf_layout = { 'down': '~15%' }
|
let g:fzf_layout = { 'down': '~15%' }
|
||||||
|
|
||||||
colorscheme paramount
|
colorscheme paramount
|
||||||
set background=dark
|
|
||||||
" transparent background
|
" transparent background
|
||||||
hi Normal guibg=NONE ctermbg=NONE
|
hi Normal guibg=NONE ctermbg=NONE
|
||||||
|
|
||||||
@@ -35,11 +34,17 @@ nnoremap <Leader>a <Plug>(ale_hover)
|
|||||||
nnoremap <Leader>d <Plug>(ale_go_to_definition_in_tab)
|
nnoremap <Leader>d <Plug>(ale_go_to_definition_in_tab)
|
||||||
nnoremap <Leader>rf <Plug>(ale_find_references)
|
nnoremap <Leader>rf <Plug>(ale_find_references)
|
||||||
|
|
||||||
|
" Hit `%` on `if` to jump to `else`.
|
||||||
|
runtime macros/matchit.vim
|
||||||
|
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
set autoindent
|
||||||
set notitle
|
set notitle
|
||||||
set nospell
|
set nospell
|
||||||
set nocompatible
|
|
||||||
set smartcase ignorecase " you need these two
|
set smartcase ignorecase " you need these two
|
||||||
|
set backspace=indent,eol,start
|
||||||
|
set hidden
|
||||||
|
set ruler
|
||||||
set shiftwidth=2 tabstop=2 expandtab
|
set shiftwidth=2 tabstop=2 expandtab
|
||||||
set laststatus=1
|
set laststatus=1
|
||||||
set number
|
set number
|
||||||
@@ -109,6 +114,8 @@ command! ToggleBackground call s:toggle_background()
|
|||||||
inoremap <F12> <C-O>:ToggleBackground<CR>
|
inoremap <F12> <C-O>:ToggleBackground<CR>
|
||||||
nnoremap <F12> :ToggleBackground<CR>
|
nnoremap <F12> :ToggleBackground<CR>
|
||||||
|
|
||||||
|
augroup filetypes
|
||||||
|
autocmd!
|
||||||
autocmd bufnewfile,bufread *.4th set filetype=forth
|
autocmd bufnewfile,bufread *.4th set filetype=forth
|
||||||
autocmd bufnewfile,bufread *.asm set filetype=nasm
|
autocmd bufnewfile,bufread *.asm set filetype=nasm
|
||||||
autocmd bufnewfile,bufread *.c set keywordprg=man\ 3
|
autocmd bufnewfile,bufread *.c set keywordprg=man\ 3
|
||||||
@@ -128,10 +135,12 @@ autocmd bufnewfile,bufread *.md packadd vim-pandoc | packadd vim-pandoc-syntax |
|
|||||||
autocmd filetype haskell packadd haskell-vim | set keywordprg=hoogle\ -i
|
autocmd filetype haskell packadd haskell-vim | set keywordprg=hoogle\ -i
|
||||||
autocmd filetype javascript packadd vim-javascript
|
autocmd filetype javascript packadd vim-javascript
|
||||||
autocmd filetype make setlocal noexpandtab
|
autocmd filetype make setlocal noexpandtab
|
||||||
|
|
||||||
autocmd filetype html packadd emmet-vim
|
autocmd filetype html packadd emmet-vim
|
||||||
autocmd filetype gitcommit setlocal spell spelllang=en
|
autocmd filetype gitcommit setlocal spell spelllang=en
|
||||||
autocmd filetype mail setlocal spell spelllang=de textwidth=0
|
autocmd filetype mail setlocal spell spelllang=de textwidth=0
|
||||||
|
augroup end
|
||||||
|
|
||||||
|
|
||||||
autocmd bufreadpost *
|
autocmd bufreadpost *
|
||||||
\ if line("'\"") > 0 && line("'\"") <= line("$") |
|
\ if line("'\"") > 0 && line("'\"") <= line("$") |
|
||||||
\ exe "normal! g`\"" |
|
\ exe "normal! g`\"" |
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
{ pkgs, lib, config, ... }:
|
{
|
||||||
with lib;
|
pkgs,
|
||||||
let cfg = config.niveum.dropbox;
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.niveum.dropbox;
|
||||||
in {
|
in {
|
||||||
options.niveum.dropbox = {enable = mkEnableOption "Dropbox";};
|
options.niveum.dropbox = {enable = mkEnableOption "Dropbox";};
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
with lib;
|
config,
|
||||||
let
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
cfg = config.niveum.hledger;
|
cfg = config.niveum.hledger;
|
||||||
hledger-git = pkgs.writers.writeDashBin "hledger-git" ''
|
hledger-git = pkgs.writers.writeDashBin "hledger-git" ''
|
||||||
LEDGER_DIR="$(dirname $LEDGER_FILE)"
|
LEDGER_DIR="$(dirname $LEDGER_FILE)"
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
{ pkgs, lib, config, ... }:
|
{
|
||||||
with lib;
|
pkgs,
|
||||||
let cfg = config.niveum.minecraft;
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.niveum.minecraft;
|
||||||
in {
|
in {
|
||||||
options.niveum.minecraft = {enable = mkEnableOption "Minecraft";};
|
options.niveum.minecraft = {enable = mkEnableOption "Minecraft";};
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
with lib;
|
config,
|
||||||
let
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
cfg = config.services.moodle-dl;
|
cfg = config.services.moodle-dl;
|
||||||
json = pkgs.formats.json {};
|
json = pkgs.formats.json {};
|
||||||
moodle-dl-json = json.generate "moodle-dl.json" cfg.settings;
|
moodle-dl-json = json.generate "moodle-dl.json" cfg.settings;
|
||||||
@@ -52,7 +56,6 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
users.users.moodle-dl = {
|
users.users.moodle-dl = {
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
home = cfg.directory;
|
home = cfg.directory;
|
||||||
|
|||||||
@@ -1,38 +1,53 @@
|
|||||||
# https://github.com/jmackie/nixos-networkmanager-profiles/
|
# https://github.com/jmackie/nixos-networkmanager-profiles/
|
||||||
{ lib, config, ... }:
|
{
|
||||||
with lib;
|
lib,
|
||||||
let
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
nm = config.networking.networkmanager;
|
nm = config.networking.networkmanager;
|
||||||
|
|
||||||
mkProfile = profileAttrs:
|
mkProfile = profileAttrs:
|
||||||
if !(isAttrs profileAttrs) then
|
if !(isAttrs profileAttrs)
|
||||||
throw "error 1"
|
then throw "error 1"
|
||||||
else {
|
else {
|
||||||
enable = true;
|
enable = true;
|
||||||
mode = "0400"; # readonly (user)
|
mode = "0400"; # readonly (user)
|
||||||
text = (foldlAttrs (accum:
|
text =
|
||||||
{ name, value }: ''
|
(foldlAttrs (accum: {
|
||||||
|
name,
|
||||||
|
value,
|
||||||
|
}: ''
|
||||||
${accum}
|
${accum}
|
||||||
|
|
||||||
[${name}] ${mkProfileEntry value}'')
|
[${name}] ${mkProfileEntry value}'')
|
||||||
"# Generated by nixos-networkmanager-profiles" profileAttrs) + "\n";
|
"# Generated by nixos-networkmanager-profiles"
|
||||||
|
profileAttrs)
|
||||||
|
+ "\n";
|
||||||
};
|
};
|
||||||
|
|
||||||
mkProfileEntry = entryAttrs:
|
mkProfileEntry = entryAttrs:
|
||||||
if !(isAttrs entryAttrs) then
|
if !(isAttrs entryAttrs)
|
||||||
throw "error 2"
|
then throw "error 2"
|
||||||
else
|
else
|
||||||
foldlAttrs (accum:
|
foldlAttrs (accum: {
|
||||||
{ name, value }: ''
|
name,
|
||||||
|
value,
|
||||||
|
}: ''
|
||||||
${accum}
|
${accum}
|
||||||
${name}=${toString value}'') "" entryAttrs;
|
${name}=${toString value}'') ""
|
||||||
|
entryAttrs;
|
||||||
|
|
||||||
foldlAttrs = op: nul: attrs:
|
foldlAttrs = op: nul: attrs:
|
||||||
foldl (accum: { fst, snd }: op accum (nameValuePair fst snd)) nul
|
foldl (accum: {
|
||||||
|
fst,
|
||||||
|
snd,
|
||||||
|
}:
|
||||||
|
op accum (nameValuePair fst snd))
|
||||||
|
nul
|
||||||
(lists.zipLists (attrNames attrs) (attrValues attrs));
|
(lists.zipLists (attrNames attrs) (attrValues attrs));
|
||||||
|
|
||||||
attrLength = attrs: length (attrValues attrs);
|
attrLength = attrs: length (attrValues attrs);
|
||||||
|
|
||||||
in {
|
in {
|
||||||
options.networking.networkmanager.profiles = mkOption {
|
options.networking.networkmanager.profiles = mkOption {
|
||||||
type = types.attrs;
|
type = types.attrs;
|
||||||
@@ -40,11 +55,15 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf (attrLength nm.profiles > 0) {
|
config = mkIf (attrLength nm.profiles > 0) {
|
||||||
environment.etc = (foldlAttrs (accum:
|
environment.etc = foldlAttrs (accum: {
|
||||||
{ name, value }:
|
name,
|
||||||
accum // {
|
value,
|
||||||
|
}:
|
||||||
|
accum
|
||||||
|
// {
|
||||||
"NetworkManager/system-connections/${name}.nmconnection" =
|
"NetworkManager/system-connections/${name}.nmconnection" =
|
||||||
mkProfile value;
|
mkProfile value;
|
||||||
}) { } nm.profiles);
|
}) {}
|
||||||
|
nm.profiles;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{
|
||||||
with lib;
|
config,
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
netname = "retiolum";
|
netname = "retiolum";
|
||||||
cfg = config.networking.retiolum;
|
cfg = config.networking.retiolum;
|
||||||
in {
|
in {
|
||||||
@@ -27,10 +31,10 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
||||||
services.tinc.networks.${netname} = {
|
services.tinc.networks.${netname} = {
|
||||||
name = cfg.nodename;
|
name = cfg.nodename;
|
||||||
hosts = builtins.mapAttrs
|
hosts =
|
||||||
|
builtins.mapAttrs
|
||||||
(name: _: builtins.readFile "${<retiolum/hosts>}/${name}")
|
(name: _: builtins.readFile "${<retiolum/hosts>}/${name}")
|
||||||
(builtins.readDir <retiolum/hosts>);
|
(builtins.readDir <retiolum/hosts>);
|
||||||
rsaPrivateKeyFile = toString <system-secrets/retiolum.key>;
|
rsaPrivateKeyFile = toString <system-secrets/retiolum.key>;
|
||||||
|
|||||||
@@ -1,13 +1,17 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
with lib;
|
lib,
|
||||||
|
pkgs,
|
||||||
let
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
cfg = config.services.spotifyd;
|
cfg = config.services.spotifyd;
|
||||||
toml = pkgs.formats.toml {};
|
toml = pkgs.formats.toml {};
|
||||||
spotifydConf = if cfg.settings != {} then toml.generate "spotify.conf" cfg.settings else pkgs.writeText "spotifyd.conf" cfg.config;
|
spotifydConf =
|
||||||
in
|
if cfg.settings != {}
|
||||||
{
|
then toml.generate "spotify.conf" cfg.settings
|
||||||
|
else pkgs.writeText "spotifyd.conf" cfg.config;
|
||||||
|
in {
|
||||||
options = {
|
options = {
|
||||||
services.spotifyd = {
|
services.spotifyd = {
|
||||||
enable = mkEnableOption "spotifyd, a Spotify playing daemon";
|
enable = mkEnableOption "spotifyd, a Spotify playing daemon";
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
|
||||||
with lib;
|
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; {
|
||||||
options.niveum = {
|
options.niveum = {
|
||||||
wirelessInterface = mkOption {type = types.str;};
|
wirelessInterface = mkOption {type = types.str;};
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{ lib, config, pkgs, ... }:
|
{
|
||||||
with lib;
|
lib,
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
cfg = config.niveum.telegramBots;
|
cfg = config.niveum.telegramBots;
|
||||||
|
|
||||||
botService = name: bot:
|
botService = name: bot:
|
||||||
@@ -17,7 +21,8 @@ let
|
|||||||
lib.strings.optionalString (bot.parseMode != null)
|
lib.strings.optionalString (bot.parseMode != null)
|
||||||
"-d parse_mode=${bot.parseMode}"
|
"-d parse_mode=${bot.parseMode}"
|
||||||
}
|
}
|
||||||
'') bot.chatIds
|
'')
|
||||||
|
bot.chatIds
|
||||||
++ ["fi"]);
|
++ ["fi"]);
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{ pkgs, lib, config, ... }:
|
{
|
||||||
with lib;
|
pkgs,
|
||||||
let
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
cfg = config.niveum.traadfri;
|
cfg = config.niveum.traadfri;
|
||||||
traadfri = pkgs.callPackage <traadfri> {
|
traadfri = pkgs.callPackage <traadfri> {
|
||||||
libcoap = pkgs.callPackage <niveum/packages/libcoap.nix> {tls = true;};
|
libcoap = pkgs.callPackage <niveum/packages/libcoap.nix> {tls = true;};
|
||||||
@@ -22,19 +26,24 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
environment.shellAliases = lib.attrsets.mapAttrs' (name: value:
|
environment.systemPackages =
|
||||||
lib.nameValuePair "traadfri-${name}" "traadfri --target Bulb ${toString value}")
|
[
|
||||||
cfg.bulbs // lib.attrsets.mapAttrs' (name: value:
|
|
||||||
lib.nameValuePair "traadfri-${name}" "traadfri --target Room ${toString value}")
|
|
||||||
cfg.rooms;
|
|
||||||
|
|
||||||
environment.systemPackages = [
|
|
||||||
(pkgs.writers.writeDashBin "traadfri" ''
|
(pkgs.writers.writeDashBin "traadfri" ''
|
||||||
TRAADFRI_USER="${cfg.user}" \
|
TRAADFRI_USER="${cfg.user}" \
|
||||||
TRAADFRI_KEY="${cfg.key}" \
|
TRAADFRI_KEY="${cfg.key}" \
|
||||||
TRAADFRI_HUB="${cfg.host}" \
|
TRAADFRI_HUB="${cfg.host}" \
|
||||||
${traadfri}/bin/traadfri $@
|
${traadfri}/bin/traadfri $@
|
||||||
'')
|
'')
|
||||||
];
|
]
|
||||||
|
++ lib.mapAttrsToList (name: value:
|
||||||
|
pkgs.writers.writeDashBin "traadfri-${name}" ''
|
||||||
|
exec traadfri --target Room ${toString value} "$@"
|
||||||
|
'')
|
||||||
|
cfg.rooms
|
||||||
|
++ lib.mapAttrsToList (name: value:
|
||||||
|
pkgs.writers.writeDashBin "traadfri-${name}" ''
|
||||||
|
exec traadfri --target Bulb ${toString value} "$@"
|
||||||
|
'')
|
||||||
|
cfg.bulbs;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
with lib;
|
config,
|
||||||
let
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
tuna = pkgs.callPackage <tuna> {};
|
tuna = pkgs.callPackage <tuna> {};
|
||||||
cfg = config.services.tuna;
|
cfg = config.services.tuna;
|
||||||
in {
|
in {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
self: super:
|
self: super:
|
||||||
with super.lib;
|
with super.lib; let
|
||||||
let
|
|
||||||
eval = import <nixpkgs/nixos/lib/eval-config.nix>;
|
eval = import <nixpkgs/nixos/lib/eval-config.nix>;
|
||||||
paths = (eval {modules = [(import <nixos-config>)];}).config.nixpkgs.overlays;
|
paths = (eval {modules = [(import <nixos-config>)];}).config.nixpkgs.overlays;
|
||||||
in foldl' (flip extends) (_: super) paths self
|
in
|
||||||
|
foldl' (flip extends) (_: super) paths self
|
||||||
|
|||||||
@@ -1,4 +1,10 @@
|
|||||||
{ lib, stdenv, makeWrapper, pandoc, fetchFromGitHub }:
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
makeWrapper,
|
||||||
|
pandoc,
|
||||||
|
fetchFromGitHub,
|
||||||
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "daybook";
|
name = "daybook";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
{ lib, writeShellScriptBin }:
|
{
|
||||||
let
|
lib,
|
||||||
|
writeShellScriptBin,
|
||||||
|
}: let
|
||||||
aliasFlag = name: value: "-c alias.${name}=${lib.escapeShellArg value}";
|
aliasFlag = name: value: "-c alias.${name}=${lib.escapeShellArg value}";
|
||||||
aliases = {
|
aliases = {
|
||||||
eroeffne = "init";
|
eroeffne = "init";
|
||||||
@@ -20,7 +22,8 @@ let
|
|||||||
tagebuch = "log";
|
tagebuch = "log";
|
||||||
zustand = "status";
|
zustand = "status";
|
||||||
};
|
};
|
||||||
in writeShellScriptBin "depp" ''
|
in
|
||||||
|
writeShellScriptBin "depp" ''
|
||||||
if [ $# -gt 0 ]; then
|
if [ $# -gt 0 ]; then
|
||||||
git ${lib.concatStringsSep " " (lib.attrsets.mapAttrsToList aliasFlag aliases)} "$@"
|
git ${lib.concatStringsSep " " (lib.attrsets.mapAttrsToList aliasFlag aliases)} "$@"
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -1,4 +1,10 @@
|
|||||||
{ fetchurl, fetchgit, linkFarm, runCommandNoCC, gnutar }: rec {
|
{
|
||||||
|
fetchurl,
|
||||||
|
fetchgit,
|
||||||
|
linkFarm,
|
||||||
|
runCommandNoCC,
|
||||||
|
gnutar,
|
||||||
|
}: rec {
|
||||||
offline_cache = linkFarm "offline" packages;
|
offline_cache = linkFarm "offline" packages;
|
||||||
packages = [
|
packages = [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,10 @@
|
|||||||
{ lib, stdenv, xdo, makeWrapper, fetchFromGitHub }:
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
xdo,
|
||||||
|
makeWrapper,
|
||||||
|
fetchFromGitHub,
|
||||||
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "devour";
|
name = "devour";
|
||||||
version = "master";
|
version = "master";
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ fetchzip, symlinkJoin, lib }:
|
{
|
||||||
let
|
fetchzip,
|
||||||
|
symlinkJoin,
|
||||||
|
lib,
|
||||||
|
}: let
|
||||||
gfs-font = name: sha256:
|
gfs-font = name: sha256:
|
||||||
fetchzip {
|
fetchzip {
|
||||||
inherit name sha256;
|
inherit name sha256;
|
||||||
@@ -10,7 +13,8 @@ let
|
|||||||
unzip -j -o $downloadedFile "**/*.otf" -d $out/share/fonts/opentype
|
unzip -j -o $downloadedFile "**/*.otf" -d $out/share/fonts/opentype
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in symlinkJoin {
|
in
|
||||||
|
symlinkJoin {
|
||||||
name = "gfs-fonts";
|
name = "gfs-fonts";
|
||||||
paths = lib.mapAttrsToList gfs-font {
|
paths = lib.mapAttrsToList gfs-font {
|
||||||
GFS_Artemisia = "1q39086pr2jhv118fjfv6l1li6japv4pdjnhh1scqw06mqrmydf4";
|
GFS_Artemisia = "1q39086pr2jhv118fjfv6l1li6japv4pdjnhh1scqw06mqrmydf4";
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
{pkgs ? import <nixpkgs> {}}:
|
{pkgs ? import <nixpkgs> {}}:
|
||||||
with pkgs;
|
with pkgs;
|
||||||
with pkgs.python2Packages;
|
with pkgs.python2Packages;
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "gourmet";
|
pname = "gourmet";
|
||||||
version = "0.17.4";
|
version = "0.17.4";
|
||||||
|
|||||||
@@ -1,4 +1,10 @@
|
|||||||
{ lib, stdenv, cmake, python3, fetchFromGitHub }:
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
cmake,
|
||||||
|
python3,
|
||||||
|
fetchFromGitHub,
|
||||||
|
}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2017.09.06";
|
version = "2017.09.06";
|
||||||
name = "iolanguage-${version}";
|
name = "iolanguage-${version}";
|
||||||
@@ -17,8 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://iolanguage.org/";
|
homepage = "https://iolanguage.org/";
|
||||||
description =
|
description = "Io programming language. Inspired by Self, Smalltalk and LISP.";
|
||||||
"Io programming language. Inspired by Self, Smalltalk and LISP.";
|
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
{ stdenv, fetchurl }:
|
{
|
||||||
|
stdenv,
|
||||||
|
fetchurl,
|
||||||
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "ix";
|
name = "ix";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
|||||||
@@ -1,6 +1,18 @@
|
|||||||
{ lib, pkg-config, fetchFromGitHub, automake, autoconf, which, libtool, stdenv, gnutls
|
{
|
||||||
, doxygen, asciidoc
|
lib,
|
||||||
, tls ? false, docs ? true }:
|
pkg-config,
|
||||||
|
fetchFromGitHub,
|
||||||
|
automake,
|
||||||
|
autoconf,
|
||||||
|
which,
|
||||||
|
libtool,
|
||||||
|
stdenv,
|
||||||
|
gnutls,
|
||||||
|
doxygen,
|
||||||
|
asciidoc,
|
||||||
|
tls ? false,
|
||||||
|
docs ? true,
|
||||||
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "libcoap";
|
name = "libcoap";
|
||||||
version = "unstable-2021-05-28";
|
version = "unstable-2021-05-28";
|
||||||
@@ -11,7 +23,8 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1igjv0hbwmakdccp5in4gw9w2p5swxdwsdx0glyna2s29sh1d37x";
|
sha256 = "1igjv0hbwmakdccp5in4gw9w2p5swxdwsdx0glyna2s29sh1d37x";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
buildInputs = [ which pkg-config automake autoconf libtool ]
|
buildInputs =
|
||||||
|
[which pkg-config automake autoconf libtool]
|
||||||
++ lib.optionals docs [doxygen asciidoc]
|
++ lib.optionals docs [doxygen asciidoc]
|
||||||
++ lib.optional tls gnutls;
|
++ lib.optional tls gnutls;
|
||||||
# preConfigure = "./autogen.sh";
|
# preConfigure = "./autogen.sh";
|
||||||
|
|||||||
@@ -1,6 +1,22 @@
|
|||||||
{ lib, fetchFromGitHub, mkDerivation, ansi-terminal, base, directory, doctest, filepath
|
{
|
||||||
, megaparsec, optparse-applicative, prettyprinter, process
|
lib,
|
||||||
, raw-strings-qq, stdenv, tasty, tasty-hunit, text, yaml
|
fetchFromGitHub,
|
||||||
|
mkDerivation,
|
||||||
|
ansi-terminal,
|
||||||
|
base,
|
||||||
|
directory,
|
||||||
|
doctest,
|
||||||
|
filepath,
|
||||||
|
megaparsec,
|
||||||
|
optparse-applicative,
|
||||||
|
prettyprinter,
|
||||||
|
process,
|
||||||
|
raw-strings-qq,
|
||||||
|
stdenv,
|
||||||
|
tasty,
|
||||||
|
tasty-hunit,
|
||||||
|
text,
|
||||||
|
yaml,
|
||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "mahlzeit";
|
pname = "mahlzeit";
|
||||||
@@ -14,15 +30,32 @@ mkDerivation {
|
|||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
libraryHaskellDepends = [
|
libraryHaskellDepends = [
|
||||||
ansi-terminal base directory filepath megaparsec prettyprinter text
|
ansi-terminal
|
||||||
|
base
|
||||||
|
directory
|
||||||
|
filepath
|
||||||
|
megaparsec
|
||||||
|
prettyprinter
|
||||||
|
text
|
||||||
yaml
|
yaml
|
||||||
];
|
];
|
||||||
executableHaskellDepends = [
|
executableHaskellDepends = [
|
||||||
ansi-terminal base directory filepath optparse-applicative process
|
ansi-terminal
|
||||||
text yaml
|
base
|
||||||
|
directory
|
||||||
|
filepath
|
||||||
|
optparse-applicative
|
||||||
|
process
|
||||||
|
text
|
||||||
|
yaml
|
||||||
];
|
];
|
||||||
testHaskellDepends = [
|
testHaskellDepends = [
|
||||||
base doctest megaparsec raw-strings-qq tasty tasty-hunit
|
base
|
||||||
|
doctest
|
||||||
|
megaparsec
|
||||||
|
raw-strings-qq
|
||||||
|
tasty
|
||||||
|
tasty-hunit
|
||||||
];
|
];
|
||||||
homepage = "https://github.com/kmein/mahlzeit";
|
homepage = "https://github.com/kmein/mahlzeit";
|
||||||
description = "Recipe toolkit";
|
description = "Recipe toolkit";
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{ stdenv, pandoc, lib, fetchgit }:
|
{
|
||||||
|
stdenv,
|
||||||
|
pandoc,
|
||||||
|
lib,
|
||||||
|
fetchgit,
|
||||||
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "pandoc-doc";
|
name = "pandoc-doc";
|
||||||
version = pandoc.version;
|
version = pandoc.version;
|
||||||
|
|||||||
37
packages/mpv-visualizer.nix
Normal file
37
packages/mpv-visualizer.nix
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenvNoCC,
|
||||||
|
fetchFromGitHub,
|
||||||
|
curl,
|
||||||
|
xclip,
|
||||||
|
}:
|
||||||
|
stdenvNoCC.mkDerivation rec {
|
||||||
|
pname = "visualizer";
|
||||||
|
version = "unstable-2021-07-10";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mfcc64";
|
||||||
|
repo = "mpv-scripts";
|
||||||
|
rev = "a0cd87eeb974a4602c5d8086b4051b5ab72f42e1";
|
||||||
|
sha256 = "1xgd1nd117lpj3ppynhgaa5sbkfm7l8n6c9a2fy8p07is2dkndrq";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/share/mpv/scripts
|
||||||
|
cp visualizer.lua $out/share/mpv/scripts
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru.scriptName = "visualizer.lua";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "various audio visualization";
|
||||||
|
homepage = "https://github.com/mfcc64/mpv-scripts";
|
||||||
|
license = licenses.unfree;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [kmein];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,4 +1,11 @@
|
|||||||
{ lib, stdenv, cmake, pkgconfig, libogg, fetchFromGitHub }:
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
cmake,
|
||||||
|
pkgconfig,
|
||||||
|
libogg,
|
||||||
|
fetchFromGitHub,
|
||||||
|
}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "opustags";
|
name = "opustags";
|
||||||
version = "1.3.0";
|
version = "1.3.0";
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{ fetchPypi, buildPythonPackage, pygtrie, ... }:
|
{
|
||||||
|
fetchPypi,
|
||||||
|
buildPythonPackage,
|
||||||
|
pygtrie,
|
||||||
|
...
|
||||||
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "betacode";
|
pname = "betacode";
|
||||||
version = "0.2";
|
version = "0.2";
|
||||||
|
|||||||
@@ -1,4 +1,11 @@
|
|||||||
{ fetchFromGitHub, buildPythonPackage, backports_functools_lru_cache, selenium, regex, ... }:
|
{
|
||||||
|
fetchFromGitHub,
|
||||||
|
buildPythonPackage,
|
||||||
|
backports_functools_lru_cache,
|
||||||
|
selenium,
|
||||||
|
regex,
|
||||||
|
...
|
||||||
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "indic_transliteration";
|
pname = "indic_transliteration";
|
||||||
version = "unstable-2020-12-15";
|
version = "unstable-2020-12-15";
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{ buildPythonApplication, fetchPypi, requests }:
|
{
|
||||||
let
|
buildPythonApplication,
|
||||||
in buildPythonApplication rec {
|
fetchPypi,
|
||||||
|
requests,
|
||||||
|
}: let
|
||||||
|
in
|
||||||
|
buildPythonApplication rec {
|
||||||
pname = "instaloader";
|
pname = "instaloader";
|
||||||
version = "4.2.4";
|
version = "4.2.4";
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{ fetchPypi, buildPythonPackage, ... }:
|
{
|
||||||
|
fetchPypi,
|
||||||
|
buildPythonPackage,
|
||||||
|
...
|
||||||
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pygtrie";
|
pname = "pygtrie";
|
||||||
version = "2.3";
|
version = "2.3";
|
||||||
|
|||||||
@@ -1,5 +1,13 @@
|
|||||||
{ buildPythonPackage, buildPythonApplication, fetchPypi, pytestrunner, six, beautifulsoup4, requests, dbus-python }:
|
{
|
||||||
let
|
buildPythonPackage,
|
||||||
|
buildPythonApplication,
|
||||||
|
fetchPypi,
|
||||||
|
pytestrunner,
|
||||||
|
six,
|
||||||
|
beautifulsoup4,
|
||||||
|
requests,
|
||||||
|
dbus-python,
|
||||||
|
}: let
|
||||||
lyricwikia = buildPythonPackage rec {
|
lyricwikia = buildPythonPackage rec {
|
||||||
pname = "lyricwikia";
|
pname = "lyricwikia";
|
||||||
version = "0.1.9";
|
version = "0.1.9";
|
||||||
@@ -11,7 +19,8 @@ let
|
|||||||
propagatedBuildInputs = [six beautifulsoup4 requests];
|
propagatedBuildInputs = [six beautifulsoup4 requests];
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
};
|
};
|
||||||
in buildPythonApplication rec {
|
in
|
||||||
|
buildPythonApplication rec {
|
||||||
pname = "spotify-cli-linux";
|
pname = "spotify-cli-linux";
|
||||||
version = "1.4.2";
|
version = "1.4.2";
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
|
|||||||
28
packages/radioeins-album-der-woche.yaml
Normal file
28
packages/radioeins-album-der-woche.yaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
regex: https://www.radioeins.de/musik/cd_der_woche/
|
||||||
|
selectors:
|
||||||
|
httpsettings:
|
||||||
|
cookie: {}
|
||||||
|
header: {}
|
||||||
|
useragent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
|
||||||
|
Chrome/90.0.4430.72 Safari/537.36
|
||||||
|
insecure: false
|
||||||
|
feed:
|
||||||
|
title: .boxhead h2
|
||||||
|
description: .manualteaserShortText
|
||||||
|
authorname: ""
|
||||||
|
authoremail: ""
|
||||||
|
item:
|
||||||
|
container: .doctyperezension
|
||||||
|
title: h2 a.rezension
|
||||||
|
link: a.rezension
|
||||||
|
linkattr: href
|
||||||
|
created: .manualteaserDateTime
|
||||||
|
createdformat: 02.01.2006
|
||||||
|
description: .manualteaserShortText
|
||||||
|
content: ""
|
||||||
|
image: picture > img
|
||||||
|
imageattr: src
|
||||||
|
nextpage: ""
|
||||||
|
nextpageattr: href
|
||||||
|
nextpagecount: 0
|
||||||
|
sort: ""
|
||||||
@@ -1,5 +1,9 @@
|
|||||||
{ stdenv, fetchFromGitHub, lib, pandoc }:
|
{
|
||||||
let
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
lib,
|
||||||
|
pandoc,
|
||||||
|
}: let
|
||||||
owner = "kamalist";
|
owner = "kamalist";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user