diff --git a/.git-crypt/.gitattributes b/.git-crypt/.gitattributes
new file mode 100644
index 0000000..665b10e
--- /dev/null
+++ b/.git-crypt/.gitattributes
@@ -0,0 +1,4 @@
+# Do not edit this file. To specify the files to encrypt, create your own
+# .gitattributes file in the directory where your files are.
+* !filter !diff
+*.gpg binary
diff --git a/.git-crypt/keys/default/0/059F098EBF0E9A13E10A46BF6500251E087653C9.gpg b/.git-crypt/keys/default/0/059F098EBF0E9A13E10A46BF6500251E087653C9.gpg
new file mode 100644
index 0000000..8164576
Binary files /dev/null and b/.git-crypt/keys/default/0/059F098EBF0E9A13E10A46BF6500251E087653C9.gpg differ
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..7e0e7cf
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+secrets.gcrypt/** filter=git-crypt diff=git-crypt
diff --git a/.github/workflows/autoupdate.yml b/.github/workflows/autoupdate.yml
new file mode 100644
index 0000000..6ab9707
--- /dev/null
+++ b/.github/workflows/autoupdate.yml
@@ -0,0 +1,50 @@
+name: Auto update
+on:
+ workflow_dispatch:
+ schedule:
+ - cron: "0 0 * * *"
+
+jobs:
+ update:
+ runs-on: ubuntu-latest
+ permissions:
+ contents: write
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ with:
+ token: ${{ secrets.PAT_TOKEN }}
+
+ - name: Check for updates
+ id: check
+ run: |
+ local=$(cat flake.lock | jq ".nodes.nixpkgs.locked.rev")
+ remote=$(curl "https://api.github.com/repos/NixOS/nixpkgs/branches/nixos-unstable/commits?per_page=1" | jq ".commit.sha")
+ if [[ $local == $remote ]]; then
+ echo "skip=1" >> "$GITHUB_OUTPUT"
+ else
+ echo "skip=0" >> "$GITHUB_OUTPUT"
+ branch=$(TZ='Australia/Melbourne' date '+staging_auto/%Y%m%d')
+ echo "branch_name=${branch}" >> "$GITHUB_OUTPUT"
+ fi
+
+ - name: Install nix
+ if: steps.check.outputs.skip == 0
+ uses: cachix/install-nix-action@v31
+
+ - name: Configure git
+ if: steps.check.outputs.skip == 0
+ run: |
+ git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
+ git config --local user.name "github-actions[bot]"
+
+ - name: Update
+ if: steps.check.outputs.skip == 0
+ run: ./update.sh
+
+ - name: Push
+ if: steps.check.outputs.skip == 0
+ uses: ad-m/github-push-action@master
+ with:
+ github_token: ${{ secrets.PAT_TOKEN }}
+ branch: ${{ steps.check.outputs.branch_name }}
diff --git a/.github/workflows/cachix.yml b/.github/workflows/cachix.yml
index 22daed6..06bed3e 100644
--- a/.github/workflows/cachix.yml
+++ b/.github/workflows/cachix.yml
@@ -5,51 +5,24 @@ on:
workflow_dispatch:
jobs:
- check:
- name: Check flake
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2.3.4
- - uses: cachix/install-nix-action@v13
- with:
- install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.5pre20211026_5667822/install
- extra_nix_config: experimental-features = nix-command flakes
- - uses: cachix/cachix-action@v10
- with:
- name: lava
- authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- - run: nix flake check --keep-going --verbose
build:
name: Build linux-lava for x86_64-linux
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2.3.4
- - uses: cachix/install-nix-action@v13
+ # credits to https://github.com/easimon/maximize-build-space/issues/45
+ - name: Remove unneeded packages to maximise build space
+ shell: bash
+ run: |
+ df -h
+ sudo rm -rf /usr/share/dotnet
+ sudo rm -rf /usr/local/lib/android
+ df -h
+ - uses: actions/checkout@v4
with:
- install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.5pre20211026_5667822/install
- extra_nix_config: experimental-features = nix-command flakes
- - uses: cachix/cachix-action@v10
+ fetch-depth: 0
+ - uses: cachix/install-nix-action@v31
+ - uses: cachix/cachix-action@v16
with:
name: lava
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build -L .#linux-lava
-
- build-nix:
- runs-on: ubuntu-latest
- name: Build nixUnstable for aarch64-linux
- steps:
- - uses: actions/checkout@v2.1.0
- - uses: dbhi/qus/action@main
- with:
- targets: arm aarch64
- - uses: cachix/install-nix-action@v13
- with:
- install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.5pre20211026_5667822/install
- extra_nix_config: |
- extra-platforms = aarch64-linux arm-linux
- experimental-features = nix-command flakes
- - uses: cachix/cachix-action@v10
- with:
- name: lava
- authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- - run: nix build -L .#packages.aarch64-linux.nixUnstable
diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml
new file mode 100644
index 0000000..4990cc7
--- /dev/null
+++ b/.github/workflows/image.yml
@@ -0,0 +1,31 @@
+name: Build images
+
+on:
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ name: Build caramel-img
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - uses: dbhi/qus/action@main
+ with:
+ targets: arm aarch64
+ - uses: cachix/install-nix-action@v17
+ with:
+ install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.12.0pre20220930_89ca75c/install
+ extra_nix_config: |
+ extra-platforms = aarch64-linux arm-linux
+ experimental-features = nix-command flakes
+ - uses: cachix/cachix-action@v10
+ with:
+ name: lava
+ authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
+ - run: nix build -L .#packages.aarch64-linux.caramel-img
+ - uses: actions/upload-artifact@v3
+ with:
+ name: caramel-sd-image
+ path: result/sd-image/*
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b2be92b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+result
diff --git a/README.md b/README.md
index c932782..daec2a6 100644
--- a/README.md
+++ b/README.md
@@ -14,17 +14,18 @@ to your liking. Open up `flake.nix`, add your new host config at the bottom, and
## Hosts
| Name | Description |
| ------- | ----------- |
-| blossom | Laptop and main PC |
+| hyacinth | Main Desktop PC |
+| anemone | Main Laptop |
| caramel | Raspberry Pi 400, stateless |
-| sugarcane | OVHCloud VPS, stateless |
+| dandelion | ARM OCI VPS, stateless |
## Users
| Name | Description |
| ---- | ----------- |
-| rin | Main user for usage |
+| rin | Main user for general usage |
| hana | Lightweight user intended for inspecting stateless hosts |
## License
-Licensed under CC0; basically you can fork, modify, redistribute, or do whatever you want I don't really care.
+Licensed under CC0
Credit is appreciated but not necessary
diff --git a/containers/amethyst/configuration.nix b/containers/amethyst/configuration.nix
new file mode 100644
index 0000000..b9d496d
--- /dev/null
+++ b/containers/amethyst/configuration.nix
@@ -0,0 +1,47 @@
+{ lib, pkgs, ... }: {
+ system.stateVersion = "23.11";
+ systemd.tmpfiles.rules = [
+ "d /persist/transmission 755 transmission transmission"
+ "d /persist/transmission/.config/transmission-daemon 750 transmission transmission"
+ "d /persist/transmission/.incomplete 750 transmission transmission"
+ "d /persist/transmission/Downloads 755 transmission transmission"
+ "d /persist/transmission/watchdir 755 transmission transmission"
+ ];
+ networking.wg-quick.interfaces.wg0 = {
+ configFile = "/persist/vpn.conf";
+ preUp = ''
+ # Try to access the DNS for up to 300s
+ for i in {1..60}; do
+ ${pkgs.iputils}/bin/ping -c1 'google.com' && break
+ echo "Attempt $i: DNS still not available"
+ sleep 5s
+ done
+ '';
+ };
+
+ # https://github.com/NixOS/nixpkgs/issues/258793
+ systemd.services.transmission.serviceConfig = {
+ BindReadOnlyPaths = lib.mkForce [ builtins.storeDir "/etc" ];
+ RootDirectoryStartOnly = lib.mkForce false;
+ RootDirectory = lib.mkForce "";
+ PrivateMounts = lib.mkForce false;
+ PrivateUsers = lib.mkForce false;
+ };
+
+ networking.firewall.allowedTCPPorts = [ 9091 ];
+ services.transmission = {
+ enable = true;
+ package = pkgs.transmission_4;
+ downloadDirPermissions = "775";
+ openFirewall = true;
+ home = "/persist/transmission";
+ settings = {
+ ratio-limit-enabled = true;
+ rpc-bind-address = "0.0.0.0";
+ rpc-enabled = true;
+ rpc-port = 9091;
+ rpc-host-whitelist-enabled = false;
+ rpc-whitelist-enabled = false;
+ };
+ };
+}
diff --git a/containers/amethyst/flake.lock b/containers/amethyst/flake.lock
new file mode 100644
index 0000000..88ab73f
--- /dev/null
+++ b/containers/amethyst/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/containers/amethyst/flake.nix b/containers/amethyst/flake.nix
new file mode 100644
index 0000000..739c3e5
--- /dev/null
+++ b/containers/amethyst/flake.nix
@@ -0,0 +1,51 @@
+{
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+ };
+ outputs = { nixpkgs, ... }: {
+ nixosConfigurations.container = nixpkgs.lib.nixosSystem {
+ modules = [ ./configuration.nix ];
+ };
+ nixosModule = { ... }:
+ let
+ name = "amethyst";
+ fqdn = "amethyst.lava.moe";
+ subnet = "1";
+ in {
+ networking.nat = {
+ enable = true;
+ enableIPv6 = true;
+ internalInterfaces = [ "ve-${name}" ];
+ };
+
+ services.nginx.virtualHosts."${fqdn}" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ #locations."/".proxyPass = "http://[fd0d:1::${subnet}:2]:9091";
+ locations."/".proxyPass = "http://10.30.${subnet}.2:9091";
+ listenAddresses = [ "10.0.0.1" "[fd0d::1]" ];
+ };
+
+ systemd.tmpfiles.rules = [ "d /persist/containers/${name} 755 root users" ];
+ containers.${name} = {
+ autoStart = true;
+ privateNetwork = true;
+ hostAddress = "10.30.${subnet}.1";
+ localAddress = "10.30.${subnet}.2";
+ hostAddress6 = "fd0d:1::${subnet}:1";
+ localAddress6 = "fd0d:1::${subnet}:2";
+ # privateUsers = "pick";
+ nixpkgs = nixpkgs;
+ ephemeral = true;
+ config = { imports = [ ./configuration.nix ]; };
+
+ bindMounts."persist" = {
+ hostPath = "/persist/containers/${name}";
+ mountPoint = "/persist";
+ isReadOnly = false;
+ };
+ # flake = "path:" + ./.;
+ };
+ };
+ };
+}
diff --git a/containers/beryllium/configuration.nix b/containers/beryllium/configuration.nix
new file mode 100644
index 0000000..6629a31
--- /dev/null
+++ b/containers/beryllium/configuration.nix
@@ -0,0 +1,23 @@
+{ ... }: {
+ system.stateVersion = "25.11";
+ fileSystems."/var/lib/private" = {
+ device = "/persist";
+ fsType = "none";
+ options = [ "bind" ];
+ };
+ networking.firewall.allowedTCPPorts = [ 6167 ];
+ networking.firewall.allowedUDPPorts = [ 6167 ];
+ # TODO: this should be generically set
+ networking.useHostResolvConf = false;
+ networking.nameservers = [ "8.8.8.8" ];
+
+ services.matrix-continuwuity = {
+ enable = true;
+ settings.global = {
+ # TODO: link this with outer container's address
+ address = [ "10.30.2.2" ];
+ server_name = "lava.moe";
+ rocksdb_recovery_mode = 2;
+ };
+ };
+}
diff --git a/containers/beryllium/flake.lock b/containers/beryllium/flake.lock
new file mode 100644
index 0000000..88ab73f
--- /dev/null
+++ b/containers/beryllium/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/containers/beryllium/flake.nix b/containers/beryllium/flake.nix
new file mode 100644
index 0000000..5805401
--- /dev/null
+++ b/containers/beryllium/flake.nix
@@ -0,0 +1,69 @@
+{
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+ };
+ outputs = { nixpkgs, ... }: {
+ nixosConfigurations.container = nixpkgs.lib.nixosSystem {
+ modules = [ ./configuration.nix ];
+ };
+ nixosModule = { ... }:
+ let
+ name = "beryllium";
+ fqdn = "beryllium.lava.moe";
+ subnet = "2";
+ in {
+ networking.nat = {
+ enable = true;
+ enableIPv6 = true;
+ internalInterfaces = [ "ve-${name}" ];
+ };
+
+ services.nginx.virtualHosts."${fqdn}" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ locations."/".extraConfig = "return 302 'https://lava.moe';";
+ locations."/_matrix".proxyPass = "http://10.30.${subnet}.2:6167";
+ locations."/_conduwuit".proxyPass = "http://10.30.${subnet}.2:6167";
+ locations."/_continuwuity".proxyPass = "http://10.30.${subnet}.2:6167";
+ };
+
+ services.nginx.virtualHosts."lava.moe" = {
+ locations."= /.well-known/matrix/server".extraConfig =
+ let
+ server = { "m.server" = "${fqdn}:443"; };
+ in ''
+ add_header Content-Type application/json;
+ return 200 '${builtins.toJSON server}';
+ '';
+ locations."= /.well-known/matrix/client".extraConfig =
+ let
+ client = {
+ "m.homeserver" = { "base_url" = "https://${fqdn}"; };
+ # "m.identity_server" = { "base_url" = "https://vector.im"; };
+ };
+ in ''
+ add_header Content-Type application/json;
+ add_header Access-Control-Allow-Origin *;
+ return 200 '${builtins.toJSON client}';
+ '';
+ };
+
+ systemd.tmpfiles.rules = [ "d /persist/containers/${name} 755 root users" ];
+ containers.${name} = {
+ autoStart = true;
+ privateNetwork = true;
+ hostAddress = "10.30.${subnet}.1";
+ localAddress = "10.30.${subnet}.2";
+ nixpkgs = nixpkgs;
+ ephemeral = true;
+ config = { imports = [ ./configuration.nix ]; };
+
+ bindMounts."persist" = {
+ hostPath = "/persist/containers/${name}";
+ mountPoint = "/persist";
+ isReadOnly = false;
+ };
+ };
+ };
+ };
+}
diff --git a/containers/citrine/configuration.nix b/containers/citrine/configuration.nix
new file mode 100644
index 0000000..0f4242a
--- /dev/null
+++ b/containers/citrine/configuration.nix
@@ -0,0 +1,53 @@
+{ config, fqdn, lib, ... }: {
+ system.stateVersion = "25.11";
+ networking.firewall.allowedTCPPorts = [ 22 3000 ];
+ networking.firewall.allowedUDPPorts = [ 22 3000 ];
+
+ systemd.tmpfiles.rules = [
+ "L+ /persist/forgejo/custom/templates - - - - ${./templates}"
+ ];
+
+ services.forgejo = {
+ enable = true;
+ lfs.enable = true;
+ settings = {
+ DEFAULT.APP_NAME = "cilly's botanical laboratory";
+ server = {
+ DOMAIN = fqdn;
+ ROOT_URL = "https://${fqdn}/";
+ HTTP_PORT = 3000;
+ START_SSH_SERVER = true;
+ BUILTIN_SSH_SERVER_USER = "git";
+ SSH_DOMAIN = "git.lava.moe";
+ SSH_SERVER_KEY_EXCHANGES = "mlkem768x25519-sha256,sntrup761x25519-sha512,sntrup761x25519-sha512@openssh.com,curve25519-sha256,curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256";
+ };
+ ui = lib.mkForce {
+ DEFAULT_THEME = "catppuccin-maroon-auto";
+ THEMES = lib.strings.concatMapStringsSep "," (x: "${x}-auto") [
+ "catppuccin-pink"
+ "catppuccin-maroon"
+ "catppuccin-flamingo"
+ "catppuccin-rosewater"
+ "forgejo"
+ "gitea"
+ ];
+ };
+ api.ENABLE_SWAGGER = false;
+ other.SHOW_FOOTER_TEMPLATE_LOAD_TIME = false;
+ repository.ENABLE_PUSH_CREATE_USER = true;
+ repository.ENABLE_PUSH_CREATE_ORG = true;
+ service.DISABLE_REGISTRATION = true;
+ };
+ stateDir = "/persist/forgejo";
+ };
+
+ systemd.services.forgejo.serviceConfig = {
+ AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ];
+ CapabilityBoundingSet = [ "CAP_NET_BIND_SERVICE" ];
+ PrivateUsers = lib.mkForce false;
+ };
+
+ catppuccin.forgejo.enable = true;
+
+ environment.systemPackages = [ config.services.forgejo.package ];
+}
diff --git a/containers/citrine/flake.lock b/containers/citrine/flake.lock
new file mode 100644
index 0000000..d627614
--- /dev/null
+++ b/containers/citrine/flake.lock
@@ -0,0 +1,62 @@
+{
+ "nodes": {
+ "catppuccin": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ },
+ "locked": {
+ "lastModified": 1773403535,
+ "narHash": "sha256-47MZaFrHxNO8tVUAmtVnerXUw2WWVluBOiU9MulN/yM=",
+ "owner": "catppuccin",
+ "repo": "nix",
+ "rev": "d45b5665cc638bad1b794350de02f4dd41b0bb47",
+ "type": "github"
+ },
+ "original": {
+ "owner": "catppuccin",
+ "repo": "nix",
+ "type": "github"
+ }
+ },
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1773122722,
+ "narHash": "sha256-FIqHByVqxCprNjor1NqF80F2QQoiiyqanNNefdlvOg4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "62dc67aa6a52b4364dd75994ec00b51fbf474e50",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_2": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "catppuccin": "catppuccin",
+ "nixpkgs": "nixpkgs_2"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/containers/citrine/flake.nix b/containers/citrine/flake.nix
new file mode 100644
index 0000000..c2a81b7
--- /dev/null
+++ b/containers/citrine/flake.nix
@@ -0,0 +1,68 @@
+{
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+ catppuccin.url = "github:catppuccin/nix";
+ };
+ outputs = { nixpkgs, catppuccin, ... }:
+ let
+ name = "citrine";
+ fqdn = "lab.lava.moe";
+ subnetId = "3";
+
+ subnet = x: "fd0d:1::${subnetId}:${toString x}";
+ host = subnet 1;
+ client = subnet 2;
+
+ subnet4 = x: "10.30.${subnetId}.${toString x}";
+ host4 = subnet4 1;
+ client4 = subnet4 2;
+
+ modules = [
+ ./configuration.nix
+ catppuccin.nixosModules.catppuccin
+ {
+ networking.useHostResolvConf = false;
+ networking.nameservers = [ host ];
+ }
+ ];
+ in {
+ nixosConfigurations.container = nixpkgs.lib.nixosSystem {
+ inherit modules;
+ };
+ nixosModule = { ... }: {
+ networking.nat = {
+ enable = true;
+ enableIPv6 = true;
+ internalInterfaces = [ "ve-${name}" ];
+ };
+
+ services.nginx.virtualHosts."${fqdn}" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ locations."/".proxyPass = "http://[${client}]:3000";
+ };
+
+ systemd.tmpfiles.rules = [ "d /persist/containers/${name} 755 root users" ];
+ containers.${name} = {
+ autoStart = true;
+ privateNetwork = true;
+ hostAddress = host4;
+ localAddress = client4;
+ hostAddress6 = host;
+ localAddress6 = client;
+ # privateUsers = "pick";
+ nixpkgs = nixpkgs;
+ ephemeral = true;
+ config = { imports = modules; };
+ specialArgs = { inherit fqdn; };
+
+ bindMounts."persist" = {
+ hostPath = "/persist/containers/${name}";
+ mountPoint = "/persist";
+ isReadOnly = false;
+ };
+ # flake = "path:" + ./.;
+ };
+ };
+ };
+}
diff --git a/containers/citrine/templates/base/footer_content.tmpl b/containers/citrine/templates/base/footer_content.tmpl
new file mode 100644
index 0000000..a9238c3
--- /dev/null
+++ b/containers/citrine/templates/base/footer_content.tmpl
@@ -0,0 +1,31 @@
+
diff --git a/containers/citrine/templates/home.tmpl b/containers/citrine/templates/home.tmpl
new file mode 100644
index 0000000..d460caf
--- /dev/null
+++ b/containers/citrine/templates/home.tmpl
@@ -0,0 +1,19 @@
+{{template "base/head" .}}
+{{if not .IsSigned}}
+
+{{end}}
+
+
+
+

+
+
+
{{ctx.Locale.Tr "startpage.app_desc"}}
+
+
+
+ {{template "home_forgejo" .}}
+
+{{template "base/footer" .}}
diff --git a/containers/diamond/configuration.nix b/containers/diamond/configuration.nix
new file mode 100644
index 0000000..01b4311
--- /dev/null
+++ b/containers/diamond/configuration.nix
@@ -0,0 +1,22 @@
+{ fqdn, ... }: {
+ system.stateVersion = "25.11";
+ systemd.tmpfiles.rules = [
+ "d /persist/vaultwarden 755 vaultwarden vaultwarden"
+ ];
+ fileSystems."/var/lib/vaultwarden" = {
+ device = "/persist/vaultwarden";
+ fsType = "none";
+ options = [ "bind" ];
+ };
+ networking.firewall.allowedTCPPorts = [ 8000 ];
+ networking.firewall.allowedUDPPorts = [ 8000 ];
+
+ services.vaultwarden = {
+ enable = true;
+ domain = fqdn;
+ config = {
+ DOMAIN = "https://${fqdn}";
+ ROCKET_ADDRESS = "::";
+ };
+ };
+}
diff --git a/containers/diamond/flake.lock b/containers/diamond/flake.lock
new file mode 100644
index 0000000..88ab73f
--- /dev/null
+++ b/containers/diamond/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/containers/diamond/flake.nix b/containers/diamond/flake.nix
new file mode 100644
index 0000000..71ab4fd
--- /dev/null
+++ b/containers/diamond/flake.nix
@@ -0,0 +1,51 @@
+{
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+ };
+ outputs = { nixpkgs, ... }:
+ let
+ name = "diamond";
+ fqdn = "astransia.lava.moe";
+ subnetId = "4";
+
+ subnet = x: "fd0d:1::${subnetId}:${toString x}";
+ host = subnet 1;
+ client = subnet 2;
+
+ modules = [
+ ./configuration.nix
+ ];
+ in {
+ nixosConfigurations.container = nixpkgs.lib.nixosSystem {
+ inherit modules;
+ };
+ nixosModule = { ... }: {
+ services.nginx.virtualHosts."${fqdn}" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ locations."/".proxyPass = "http://[${client}]:8000";
+ listenAddresses = [ "10.0.0.1" "[fd0d::1]" "100.67.1.1" ];
+ };
+
+ systemd.tmpfiles.rules = [ "d /persist/containers/${name} 755 root users" ];
+ containers.${name} = {
+ autoStart = true;
+ privateNetwork = true;
+ hostAddress6 = host;
+ localAddress6 = client;
+ # privateUsers = "pick";
+ nixpkgs = nixpkgs;
+ ephemeral = true;
+ config = { imports = modules; };
+ specialArgs = { inherit fqdn; };
+
+ bindMounts."persist" = {
+ hostPath = "/persist/containers/${name}";
+ mountPoint = "/persist";
+ isReadOnly = false;
+ };
+ # flake = "path:" + ./.;
+ };
+ };
+ };
+}
diff --git a/containers/emerald/configuration.nix b/containers/emerald/configuration.nix
new file mode 100644
index 0000000..421ddb0
--- /dev/null
+++ b/containers/emerald/configuration.nix
@@ -0,0 +1,23 @@
+{ fqdn, shareFqdn, ... }: {
+ system.stateVersion = "25.11";
+ systemd.tmpfiles.rules = [
+ "d /persist/navidrome 755 navidrome navidrome"
+ ];
+ networking.firewall.allowedTCPPorts = [ 4533 ];
+ networking.firewall.allowedUDPPorts = [ 4533 ];
+
+ services.navidrome = {
+ enable = true;
+ environmentFile = "/binds/navidrome_env";
+ settings = {
+ Port = 4533;
+ Address = "[::]";
+ BaseUrl = "https://${fqdn}/";
+ ShareURL = "https://${shareFqdn}";
+ EnableSharing = true;
+ DataFolder = "/persist/navidrome";
+ MusicFolder = "/binds/music/main";
+ };
+ };
+ systemd.services.navidrome.serviceConfig.BindReadOnlyPaths = ["/binds/music"];
+}
diff --git a/containers/emerald/flake.lock b/containers/emerald/flake.lock
new file mode 100644
index 0000000..88ab73f
--- /dev/null
+++ b/containers/emerald/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/containers/emerald/flake.nix b/containers/emerald/flake.nix
new file mode 100644
index 0000000..5ee69e4
--- /dev/null
+++ b/containers/emerald/flake.nix
@@ -0,0 +1,78 @@
+{
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+ };
+ outputs = { nixpkgs, ... }:
+ let
+ name = "emerald";
+ fqdn = "navia.lava.moe";
+ shareFqdn = "muse.lava.moe";
+ subnetId = "5";
+
+ subnet = x: "fd0d:2::${subnetId}:${toString x}";
+ host = subnet 1;
+ client = subnet 2;
+
+ subnet4 = x: "10.32.${subnetId}.${toString x}";
+ host4 = subnet4 1;
+ client4 = subnet4 2;
+
+ modules = [
+ ./configuration.nix
+ {
+ networking.useHostResolvConf = false;
+ networking.nameservers = [ host ];
+ }
+ ];
+ in {
+ nixosConfigurations.container = nixpkgs.lib.nixosSystem {
+ inherit modules;
+ };
+ nixosModule = { config, ... }: {
+ networking.nat = {
+ enable = true;
+ enableIPv6 = true;
+ internalInterfaces = [ "ve-${name}" ];
+ };
+
+ services.nginx.virtualHosts."${fqdn}" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ locations."/".proxyPass = "http://[${client}]:4533";
+ listenAddresses = [ "100.67.2.1" ];
+ };
+
+ systemd.tmpfiles.rules = [ "d /persist/containers/${name} 755 root users" ];
+ containers.${name} = {
+ autoStart = true;
+ privateNetwork = true;
+ hostAddress = host4;
+ localAddress = client4;
+ hostAddress6 = host;
+ localAddress6 = client;
+ # privateUsers = "pick";
+ nixpkgs = nixpkgs;
+ ephemeral = true;
+ config = { imports = modules; };
+ specialArgs = { inherit fqdn shareFqdn; };
+
+ bindMounts."persist" = {
+ hostPath = "/persist/containers/${name}";
+ mountPoint = "/persist";
+ isReadOnly = false;
+ };
+ bindMounts."music" = {
+ hostPath = "/flower/media/music";
+ mountPoint = "/binds/music";
+ isReadOnly = true;
+ };
+ bindMounts."navidrome_env" = {
+ hostPath = config.age.secrets.navidrome_env.path;
+ mountPoint = "/binds/navidrome_env";
+ isReadOnly = true;
+ };
+ # flake = "path:" + ./.;
+ };
+ };
+ };
+}
diff --git a/containers/fluorite/configuration.nix b/containers/fluorite/configuration.nix
new file mode 100644
index 0000000..9fcb5f5
--- /dev/null
+++ b/containers/fluorite/configuration.nix
@@ -0,0 +1,22 @@
+{ ... }: {
+ system.stateVersion = "25.11";
+ systemd.tmpfiles.rules = [
+ "d /persist/slskd/Downloads 755 slskd slskd"
+ ];
+ fileSystems."/var/lib/slskd" = {
+ device = "/persist/slskd";
+ fsType = "none";
+ options = [ "bind" ];
+ };
+ networking.firewall.allowedTCPPorts = [ 5030 50300 ];
+ networking.firewall.allowedUDPPorts = [ 5030 50300 ];
+
+ services.slskd = {
+ enable = true;
+ domain = null;
+ environmentFile = "/binds/slskd_env";
+ settings = {
+ shares.directories = [ "/binds/music/" ];
+ };
+ };
+}
diff --git a/containers/fluorite/flake.lock b/containers/fluorite/flake.lock
new file mode 100644
index 0000000..88ab73f
--- /dev/null
+++ b/containers/fluorite/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/containers/fluorite/flake.nix b/containers/fluorite/flake.nix
new file mode 100644
index 0000000..33fcdb1
--- /dev/null
+++ b/containers/fluorite/flake.nix
@@ -0,0 +1,89 @@
+{
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+ };
+ outputs = { nixpkgs, ... }:
+ let
+ name = "fluorite";
+ fqdn = "fluorite.lava.moe";
+ subnetId = "6";
+
+ subnet = x: "fd0d:1::${subnetId}:${toString x}";
+ host = subnet 1;
+ client = subnet 2;
+
+ subnet4 = x: "10.30.${subnetId}.${toString x}";
+ host4 = subnet4 1;
+ client4 = subnet4 2;
+
+ modules = [
+ ./configuration.nix
+ {
+ networking.useHostResolvConf = false;
+ networking.nameservers = [ host ];
+ }
+ ];
+ in {
+ nixosConfigurations.container = nixpkgs.lib.nixosSystem {
+ inherit modules;
+ };
+ nixosModule = { config, ... }: {
+ networking.nat = {
+ enable = true;
+ enableIPv6 = true;
+ internalInterfaces = [ "ve-${name}" ];
+ };
+ networking.firewall.allowedTCPPorts = [ 50300 ];
+
+ services.nginx.virtualHosts."${fqdn}" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ locations."/".proxyPass = "http://[${client}]:5030";
+ listenAddresses = [ "10.0.0.1" "[fd0d::1]" "100.67.1.1" ];
+ };
+
+ systemd.tmpfiles.rules = [
+ "d /persist/containers/${name} 755 root users"
+ "d /persist/media/music 075 nobody users"
+ ];
+ containers.${name} = {
+ autoStart = true;
+ privateNetwork = true;
+ hostAddress = host4;
+ localAddress = client4;
+ hostAddress6 = host;
+ localAddress6 = client;
+ # privateUsers = "pick";
+ nixpkgs = nixpkgs;
+ ephemeral = true;
+ config = { imports = modules; };
+ specialArgs = { inherit fqdn; };
+
+ forwardPorts = [
+ {
+ containerPort = 50300;
+ hostPort = 50300;
+ protocol = "tcp";
+ }
+ ];
+
+ bindMounts."persist" = {
+ hostPath = "/persist/containers/${name}";
+ mountPoint = "/persist";
+ isReadOnly = false;
+ };
+ bindMounts."music" = {
+ hostPath = "/persist/media/music";
+ mountPoint = "/binds/music";
+ isReadOnly = true;
+ };
+ bindMounts."slskd_env" = {
+ hostPath = config.age.secrets.slskd_env.path;
+ mountPoint = "/binds/slskd_env";
+ isReadOnly = true;
+ };
+ # flake = "path:" + ./.;
+ };
+ };
+ };
+}
diff --git a/containers/garnet/configuration.nix b/containers/garnet/configuration.nix
new file mode 100644
index 0000000..21400c5
--- /dev/null
+++ b/containers/garnet/configuration.nix
@@ -0,0 +1,36 @@
+{ ... }: {
+ system.stateVersion = "25.11";
+ fileSystems."/var/lib/opencloud" = {
+ device = "/flower/data";
+ fsType = "none";
+ options = [ "bind" ];
+ };
+ fileSystems."/etc/opencloud" = {
+ device = "/persist/cfg";
+ fsType = "none";
+ options = [ "bind" ];
+ };
+ # TODO: hardcoded address
+ networking.extraHosts = ''
+ 100.67.2.1 cloud.lava.moe
+ '';
+
+ networking.firewall.allowedTCPPorts = [ 9200 ];
+ networking.firewall.allowedUDPPorts = [ 9200 ];
+
+ environment.etc."opencloud-admin-pass".text = ''
+ IDM_ADMIN_PASSWORD=supersillysecure
+ '';
+ services.opencloud = {
+ enable = true;
+ url = "https://cloud.lava.moe";
+ address = "10.30.7.2";
+ port = 9200;
+ environment = {
+ PROXY_TLS = "false";
+ IDP_ACCESS_TOKEN_EXPIRATION = "2592000";
+ IDP_ID_TOKEN_EXPIRATION = "2592000";
+ };
+ environmentFile = "/etc/opencloud-admin-pass";
+ };
+}
diff --git a/containers/garnet/flake.lock b/containers/garnet/flake.lock
new file mode 100644
index 0000000..4070242
--- /dev/null
+++ b/containers/garnet/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1779560665,
+ "narHash": "sha256-tpyBcxPpcQb8ukyNF7DoCwfSY3VPsxHoYwj00Cayv5o=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "64c08a7ca051951c8eae34e3e3cb1e202fe36786",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/containers/garnet/flake.nix b/containers/garnet/flake.nix
new file mode 100644
index 0000000..df835a4
--- /dev/null
+++ b/containers/garnet/flake.nix
@@ -0,0 +1,84 @@
+{
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+ };
+ outputs = { nixpkgs, ... }:
+ let
+ name = "garnet";
+ fqdn = "cloud.lava.moe";
+ subnetId = "7";
+
+ subnet = x: "fd0d:1::${subnetId}:${toString x}";
+ host = subnet 1;
+ client = subnet 2;
+
+ subnet4 = x: "10.30.${subnetId}.${toString x}";
+ host4 = subnet4 1;
+ client4 = subnet4 2;
+
+ modules = [
+ ./configuration.nix
+ {
+ networking.useHostResolvConf = false;
+ networking.nameservers = [ host ];
+ }
+ ];
+ in {
+ nixosConfigurations.container = nixpkgs.lib.nixosSystem {
+ inherit modules;
+ };
+ nixosModule = { config, ... }: {
+ networking.nat = {
+ enable = true;
+ enableIPv6 = true;
+ internalInterfaces = [ "ve-${name}" ];
+ };
+
+ services.nginx.virtualHosts."${fqdn}" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ locations."/" = {
+ proxyPass = "http://${client4}:9200";
+ proxyWebsockets = true;
+ };
+ extraConfig = ''
+ proxy_read_timeout 3600s;
+ proxy_send_timeout 3600s;
+ keepalive_requests 100000;
+ keepalive_timeout 5m;
+ http2_max_concurrent_streams 512;
+ '';
+ # TODO: hardcoded address
+ listenAddresses = [ "100.67.2.1" ];
+ };
+
+ systemd.tmpfiles.rules = [
+ "d /persist/containers/${name} 755 root users"
+ ];
+ containers.${name} = {
+ autoStart = true;
+ privateNetwork = true;
+ hostAddress = host4;
+ localAddress = client4;
+ hostAddress6 = host;
+ localAddress6 = client;
+ # privateUsers = "pick";
+ nixpkgs = nixpkgs;
+ ephemeral = true;
+ config = { imports = modules; };
+ specialArgs = { inherit fqdn; };
+
+ bindMounts."persist" = {
+ hostPath = "/persist/containers/${name}";
+ mountPoint = "/persist";
+ isReadOnly = false;
+ };
+ bindMounts."content" = {
+ hostPath = "/flower/opencloud";
+ mountPoint = "/flower";
+ isReadOnly = false;
+ };
+ };
+ };
+ };
+}
diff --git a/flake.lock b/flake.lock
index 9b8dac1..2578a7e 100644
--- a/flake.lock
+++ b/flake.lock
@@ -1,113 +1,266 @@
{
"nodes": {
+ "aagl": {
+ "inputs": {
+ "flake-compat": "flake-compat",
+ "nixpkgs": "nixpkgs",
+ "rust-overlay": "rust-overlay"
+ },
+ "locked": {
+ "lastModified": 1779903856,
+ "narHash": "sha256-uRShMtD6xW3ZKZbCQ6sDzKWEnbBXUg3IGfOARYogKhg=",
+ "owner": "ezKEa",
+ "repo": "aagl-gtk-on-nix",
+ "rev": "50671fc7f29d686f63ef34b603320d44ad7f2d29",
+ "type": "github"
+ },
+ "original": {
+ "owner": "ezKEa",
+ "repo": "aagl-gtk-on-nix",
+ "type": "github"
+ }
+ },
"agenix": {
"inputs": {
+ "darwin": "darwin",
+ "home-manager": "home-manager",
"nixpkgs": [
"nixpkgs"
+ ],
+ "systems": "systems"
+ },
+ "locked": {
+ "lastModified": 1770165109,
+ "narHash": "sha256-9VnK6Oqai65puVJ4WYtCTvlJeXxMzAp/69HhQuTdl/I=",
+ "owner": "ryantm",
+ "repo": "agenix",
+ "rev": "b027ee29d959fda4b60b57566d64c98a202e0feb",
+ "type": "github"
+ },
+ "original": {
+ "owner": "ryantm",
+ "repo": "agenix",
+ "type": "github"
+ }
+ },
+ "c-amethyst": {
+ "inputs": {
+ "nixpkgs": "nixpkgs_2"
+ },
+ "locked": {
+ "path": "./containers/amethyst",
+ "type": "path"
+ },
+ "original": {
+ "path": "./containers/amethyst",
+ "type": "path"
+ },
+ "parent": []
+ },
+ "c-beryllium": {
+ "inputs": {
+ "nixpkgs": "nixpkgs_3"
+ },
+ "locked": {
+ "path": "./containers/beryllium",
+ "type": "path"
+ },
+ "original": {
+ "path": "./containers/beryllium",
+ "type": "path"
+ },
+ "parent": []
+ },
+ "c-citrine": {
+ "inputs": {
+ "catppuccin": "catppuccin",
+ "nixpkgs": "nixpkgs_5"
+ },
+ "locked": {
+ "path": "./containers/citrine",
+ "type": "path"
+ },
+ "original": {
+ "path": "./containers/citrine",
+ "type": "path"
+ },
+ "parent": []
+ },
+ "c-diamond": {
+ "inputs": {
+ "nixpkgs": "nixpkgs_6"
+ },
+ "locked": {
+ "path": "./containers/diamond",
+ "type": "path"
+ },
+ "original": {
+ "path": "./containers/diamond",
+ "type": "path"
+ },
+ "parent": []
+ },
+ "c-emerald": {
+ "inputs": {
+ "nixpkgs": "nixpkgs_7"
+ },
+ "locked": {
+ "path": "./containers/emerald",
+ "type": "path"
+ },
+ "original": {
+ "path": "./containers/emerald",
+ "type": "path"
+ },
+ "parent": []
+ },
+ "c-fluorite": {
+ "inputs": {
+ "nixpkgs": "nixpkgs_8"
+ },
+ "locked": {
+ "path": "./containers/fluorite",
+ "type": "path"
+ },
+ "original": {
+ "path": "./containers/fluorite",
+ "type": "path"
+ },
+ "parent": []
+ },
+ "c-garnet": {
+ "inputs": {
+ "nixpkgs": "nixpkgs_9"
+ },
+ "locked": {
+ "path": "./containers/garnet",
+ "type": "path"
+ },
+ "original": {
+ "path": "./containers/garnet",
+ "type": "path"
+ },
+ "parent": []
+ },
+ "catppuccin": {
+ "inputs": {
+ "nixpkgs": "nixpkgs_4"
+ },
+ "locked": {
+ "lastModified": 1773403535,
+ "narHash": "sha256-47MZaFrHxNO8tVUAmtVnerXUw2WWVluBOiU9MulN/yM=",
+ "owner": "catppuccin",
+ "repo": "nix",
+ "rev": "d45b5665cc638bad1b794350de02f4dd41b0bb47",
+ "type": "github"
+ },
+ "original": {
+ "owner": "catppuccin",
+ "repo": "nix",
+ "type": "github"
+ }
+ },
+ "catppuccin-palette": {
+ "flake": false,
+ "locked": {
+ "lastModified": 1774131488,
+ "narHash": "sha256-hsy+GhuM4MSjnwGq1YJSLBFIbVm67SSdPRgObP00mxw=",
+ "owner": "catppuccin",
+ "repo": "palette",
+ "rev": "07d02aa110ef9eb7e7427afca5c73ba9cf7f8ebd",
+ "type": "github"
+ },
+ "original": {
+ "owner": "catppuccin",
+ "repo": "palette",
+ "type": "github"
+ }
+ },
+ "catppuccin-v1_1": {
+ "locked": {
+ "lastModified": 1734055249,
+ "narHash": "sha256-pCWJgwo77KD7EJpwynwKrWPZ//dwypHq2TfdzZWqK68=",
+ "rev": "7221d6ca17ac36ed20588e1c3a80177ac5843fa7",
+ "revCount": 326,
+ "type": "tarball",
+ "url": "https://api.flakehub.com/f/pinned/catppuccin/nix/1.1.1/0193bdc0-b045-7eed-bbec-95611a8ecdf5/source.tar.gz"
+ },
+ "original": {
+ "type": "tarball",
+ "url": "https://flakehub.com/f/catppuccin/nix/1.1.%2A.tar.gz"
+ }
+ },
+ "catppuccin-v1_2": {
+ "locked": {
+ "lastModified": 1734728407,
+ "narHash": "sha256-Let3uJo4YDyfqbqaw66dpZxhJB2TrDyZWSFd5rpPLJA=",
+ "rev": "23ee86dbf4ed347878115a78971d43025362fab1",
+ "revCount": 341,
+ "type": "tarball",
+ "url": "https://api.flakehub.com/f/pinned/catppuccin/nix/1.2.0/0193e5e0-33b7-7149-a362-bfe56b20f64e/source.tar.gz"
+ },
+ "original": {
+ "type": "tarball",
+ "url": "https://flakehub.com/f/catppuccin/nix/1.2.%2A.tar.gz"
+ }
+ },
+ "catppuccin_2": {
+ "inputs": {
+ "catppuccin-v1_1": "catppuccin-v1_1",
+ "catppuccin-v1_2": "catppuccin-v1_2",
+ "home-manager": "home-manager_2",
+ "home-manager-stable": "home-manager-stable",
+ "nixpkgs": [
+ "nixpkgs"
+ ],
+ "nixpkgs-stable": "nixpkgs-stable",
+ "nuscht-search": "nuscht-search"
+ },
+ "locked": {
+ "lastModified": 1736069220,
+ "narHash": "sha256-76MaB3COao55nlhWmSmq9PKgu2iGIs54C1cAE0E5J6Y=",
+ "owner": "catppuccin",
+ "repo": "nix",
+ "rev": "8eada392fd6571a747e1c5fc358dd61c14c8704e",
+ "type": "github"
+ },
+ "original": {
+ "owner": "catppuccin",
+ "repo": "nix",
+ "rev": "8eada392fd6571a747e1c5fc358dd61c14c8704e",
+ "type": "github"
+ }
+ },
+ "darwin": {
+ "inputs": {
+ "nixpkgs": [
+ "agenix",
+ "nixpkgs"
]
},
"locked": {
- "lastModified": 1645566155,
- "narHash": "sha256-tICzY8QaLLR9u1Hf05cEhgK3RxZ3slz1HXc4aduELnQ=",
- "owner": "ryantm",
- "repo": "agenix",
- "rev": "b4ab630f195cb15f833cb285de232b1a22d1ea0a",
+ "lastModified": 1744478979,
+ "narHash": "sha256-dyN+teG9G82G+m+PX/aSAagkC+vUv0SgUw3XkPhQodQ=",
+ "owner": "lnl7",
+ "repo": "nix-darwin",
+ "rev": "43975d782b418ebf4969e9ccba82466728c2851b",
"type": "github"
},
"original": {
- "owner": "ryantm",
- "repo": "agenix",
- "type": "github"
- }
- },
- "better-status-indicators": {
- "flake": false,
- "locked": {
- "lastModified": 1645144627,
- "narHash": "sha256-ifsDId8OuDDy5l/8r+9fEW6T8UQHsrzbdkrrWAge/qg=",
- "owner": "griefmodz",
- "repo": "better-status-indicators",
- "rev": "c5ace7a17ed9083bb58a3e010365c3aeadac43fb",
- "type": "github"
- },
- "original": {
- "owner": "griefmodz",
- "repo": "better-status-indicators",
- "type": "github"
- }
- },
- "channel-typing": {
- "flake": false,
- "locked": {
- "lastModified": 1634895849,
- "narHash": "sha256-wlbzg2zzFcwBGCa90DAKUEAtytQBc8kYAjzXGq1J6AM=",
- "owner": "powercord-community",
- "repo": "channel-typing",
- "rev": "8e41b085410a5bb72ddf9f372c8957eed6d2cb82",
- "type": "github"
- },
- "original": {
- "owner": "powercord-community",
- "repo": "channel-typing",
- "type": "github"
- }
- },
- "discord-tokyonight": {
- "flake": false,
- "locked": {
- "lastModified": 1632310328,
- "narHash": "sha256-LcxXTGdo6ZW5glECkH5vgLWAYMZ3ez/3USc059dR9cE=",
- "owner": "DanisDGK",
- "repo": "zelk-customizations",
- "rev": "c5ed0be3f2dd4421c42a4c62d28fc52d18c68ef1",
- "type": "github"
- },
- "original": {
- "owner": "DanisDGK",
- "repo": "zelk-customizations",
- "type": "github"
- }
- },
- "discord-tweaks": {
- "flake": false,
- "locked": {
- "lastModified": 1627600834,
- "narHash": "sha256-xSzbP86w5OUy1ZO1iHgv1drbujtlPQAgJmLA3x7UOFc=",
- "owner": "NurMarvin",
- "repo": "discord-tweaks",
- "rev": "bc28b090f9ed706d7f8271aeaa64bdcb886fd0ef",
- "type": "github"
- },
- "original": {
- "owner": "NurMarvin",
- "repo": "discord-tweaks",
- "type": "github"
- }
- },
- "discover": {
- "flake": false,
- "locked": {
- "lastModified": 1644486006,
- "narHash": "sha256-Dib1EFybRsVsLgGKsWhDeMCIT1H9im+09RyFFy32O3I=",
- "owner": "trigg",
- "repo": "Discover",
- "rev": "0cfb0aef6924191ed26c462f07a61d41396a238c",
- "type": "github"
- },
- "original": {
- "owner": "trigg",
- "repo": "Discover",
+ "owner": "lnl7",
+ "ref": "master",
+ "repo": "nix-darwin",
"type": "github"
}
},
"fast-syntax-highlighting": {
"flake": false,
"locked": {
- "lastModified": 1636856829,
- "narHash": "sha256-x+4C2u03RueNo6/ZXsueqmYoPIpDHnKAZXP5IiKsidE=",
+ "lastModified": 1752660993,
+ "narHash": "sha256-ZihUL4JAVk9V+IELSakytlb24BvEEJ161CQEHZYYoSA=",
"owner": "zdharma-continuum",
"repo": "fast-syntax-highlighting",
- "rev": "585c089968caa1c904cbe926ff04a1be9e3d8f42",
+ "rev": "3d574ccf48804b10dca52625df13da5edae7f553",
"type": "github"
},
"original": {
@@ -116,30 +269,14 @@
"type": "github"
}
},
- "fix-user-popouts": {
- "flake": false,
- "locked": {
- "lastModified": 1634895855,
- "narHash": "sha256-QayntcvZkPTJZVCNmH5eSkd3ONEmCLLGWbjt6VRihBI=",
- "owner": "cyyynthia",
- "repo": "fix-user-popouts",
- "rev": "cd765921f3af16865dd4b2610dee2f3a617c08e7",
- "type": "github"
- },
- "original": {
- "owner": "cyyynthia",
- "repo": "fix-user-popouts",
- "type": "github"
- }
- },
"flake-compat": {
"flake": false,
"locked": {
- "lastModified": 1641205782,
- "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=",
+ "lastModified": 1767039857,
+ "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
"owner": "edolstra",
"repo": "flake-compat",
- "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7",
+ "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
"type": "github"
},
"original": {
@@ -148,13 +285,71 @@
"type": "github"
}
},
- "flake-utils": {
+ "flake-compat_2": {
+ "flake": false,
"locked": {
- "lastModified": 1629481132,
- "narHash": "sha256-JHgasjPR0/J1J3DRm4KxM4zTyAj4IOJY8vIl75v/kPI=",
+ "lastModified": 1767039857,
+ "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
+ "owner": "NixOS",
+ "repo": "flake-compat",
+ "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "repo": "flake-compat",
+ "type": "github"
+ }
+ },
+ "flake-parts": {
+ "inputs": {
+ "nixpkgs-lib": [
+ "neovim-nightly",
+ "nixpkgs"
+ ]
+ },
+ "locked": {
+ "lastModified": 1778716662,
+ "narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=",
+ "owner": "hercules-ci",
+ "repo": "flake-parts",
+ "rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb",
+ "type": "github"
+ },
+ "original": {
+ "owner": "hercules-ci",
+ "repo": "flake-parts",
+ "type": "github"
+ }
+ },
+ "flake-parts_2": {
+ "inputs": {
+ "nixpkgs-lib": "nixpkgs-lib"
+ },
+ "locked": {
+ "lastModified": 1778716662,
+ "narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=",
+ "owner": "hercules-ci",
+ "repo": "flake-parts",
+ "rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb",
+ "type": "github"
+ },
+ "original": {
+ "owner": "hercules-ci",
+ "repo": "flake-parts",
+ "type": "github"
+ }
+ },
+ "flake-utils": {
+ "inputs": {
+ "systems": "systems_2"
+ },
+ "locked": {
+ "lastModified": 1731533236,
+ "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
- "rev": "997f7efcb746a9c140ce1f13c72263189225f482",
+ "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
@@ -164,12 +359,15 @@
}
},
"flake-utils_2": {
+ "inputs": {
+ "systems": "systems_3"
+ },
"locked": {
- "lastModified": 1638122382,
- "narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=",
+ "lastModified": 1731533236,
+ "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
- "rev": "74f7e4319258e287b0f9cb95426c9853b282730b",
+ "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
@@ -179,12 +377,15 @@
}
},
"flake-utils_3": {
+ "inputs": {
+ "systems": "systems_4"
+ },
"locked": {
- "lastModified": 1637014545,
- "narHash": "sha256-26IZAc5yzlD9FlDT54io1oqG/bBoyka+FJk5guaX4x4=",
+ "lastModified": 1701680307,
+ "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
"owner": "numtide",
"repo": "flake-utils",
- "rev": "bba5dcc8e0b20ab664967ad83d24d64cb64ec4f4",
+ "rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
"type": "github"
},
"original": {
@@ -193,18 +394,64 @@
"type": "github"
}
},
+ "git-hooks": {
+ "inputs": {
+ "flake-compat": "flake-compat_2",
+ "gitignore": "gitignore",
+ "nixpkgs": [
+ "nix-gaming",
+ "nixpkgs"
+ ]
+ },
+ "locked": {
+ "lastModified": 1778507602,
+ "narHash": "sha256-kTwur1wV+01SdqskVMSo6JMEpg71ps3HpbFY2GsflKs=",
+ "owner": "cachix",
+ "repo": "git-hooks.nix",
+ "rev": "61ab0e80d9c7ab14c256b5b453d8b3fb0189ba0a",
+ "type": "github"
+ },
+ "original": {
+ "owner": "cachix",
+ "repo": "git-hooks.nix",
+ "type": "github"
+ }
+ },
+ "gitignore": {
+ "inputs": {
+ "nixpkgs": [
+ "nix-gaming",
+ "git-hooks",
+ "nixpkgs"
+ ]
+ },
+ "locked": {
+ "lastModified": 1709087332,
+ "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
+ "owner": "hercules-ci",
+ "repo": "gitignore.nix",
+ "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
+ "type": "github"
+ },
+ "original": {
+ "owner": "hercules-ci",
+ "repo": "gitignore.nix",
+ "type": "github"
+ }
+ },
"home-manager": {
"inputs": {
"nixpkgs": [
+ "agenix",
"nixpkgs"
]
},
"locked": {
- "lastModified": 1645970334,
- "narHash": "sha256-6nn4YF9bPtkxkB7bM6yJO3m//p3sGilxNQFjm1epLEM=",
+ "lastModified": 1745494811,
+ "narHash": "sha256-YZCh2o9Ua1n9uCvrvi5pRxtuVNml8X2a03qIFfRKpFs=",
"owner": "nix-community",
"repo": "home-manager",
- "rev": "ea85f4b1fdf3f25cf97dc49f4a9ec4eafda2ea25",
+ "rev": "abfad3d2958c9e6300a883bd443512c55dfeb1be",
"type": "github"
},
"original": {
@@ -213,51 +460,105 @@
"type": "github"
}
},
- "home-manager-porcupine": {
+ "home-manager-stable": {
"inputs": {
"nixpkgs": [
- "nixpkgs-porcupine"
+ "catppuccin",
+ "nixpkgs-stable"
]
},
"locked": {
- "lastModified": 1643735249,
- "narHash": "sha256-hwX+qvF9fipwItm3V6M3mL3L0Iis+PY2DfXqnhPi+uQ=",
- "owner": "LavaDesu",
+ "lastModified": 1734366194,
+ "narHash": "sha256-vykpJ1xsdkv0j8WOVXrRFHUAdp9NXHpxdnn1F4pYgSw=",
+ "owner": "nix-community",
"repo": "home-manager",
- "rev": "ea795dd7acc9ce6069a786f6088a296f8e64c280",
+ "rev": "80b0fdf483c5d1cb75aaad909bd390d48673857f",
"type": "github"
},
"original": {
- "owner": "LavaDesu",
- "ref": "backport/gpg-agent",
+ "owner": "nix-community",
+ "ref": "release-24.11",
"repo": "home-manager",
"type": "github"
}
},
- "hosts-blocklists": {
- "flake": false,
+ "home-manager_2": {
+ "inputs": {
+ "nixpkgs": [
+ "catppuccin",
+ "nixpkgs"
+ ]
+ },
"locked": {
- "lastModified": 1645947247,
- "narHash": "sha256-wseGnk99SZS4zm9Mhoa1eZr2Gik2RERnhTZH1R49C4s=",
- "owner": "notracking",
- "repo": "hosts-blocklists",
- "rev": "8ae18c1c2188380ad7697dd09c141fe9ef5f0c11",
+ "lastModified": 1734622215,
+ "narHash": "sha256-OOfI0XhSJGHblfdNDhfnn8QnZxng63rWk9eeJ2tCbiI=",
+ "owner": "nix-community",
+ "repo": "home-manager",
+ "rev": "1395379a7a36e40f2a76e7b9936cc52950baa1be",
"type": "github"
},
"original": {
- "owner": "notracking",
- "repo": "hosts-blocklists",
+ "owner": "nix-community",
+ "repo": "home-manager",
+ "type": "github"
+ }
+ },
+ "home-manager_3": {
+ "inputs": {
+ "nixpkgs": [
+ "nixpkgs"
+ ]
+ },
+ "locked": {
+ "lastModified": 1779969295,
+ "narHash": "sha256-HwIJ3tOcwSMiV75L7KqJXciXR9UfT+d7rwOZMX7cTnA=",
+ "owner": "nix-community",
+ "repo": "home-manager",
+ "rev": "61e2c9659324181e0f0ed911958c536333b1d4f6",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nix-community",
+ "repo": "home-manager",
+ "type": "github"
+ }
+ },
+ "ixx": {
+ "inputs": {
+ "flake-utils": [
+ "catppuccin",
+ "nuscht-search",
+ "flake-utils"
+ ],
+ "nixpkgs": [
+ "catppuccin",
+ "nuscht-search",
+ "nixpkgs"
+ ]
+ },
+ "locked": {
+ "lastModified": 1729958008,
+ "narHash": "sha256-EiOq8jF4Z/zQe0QYVc3+qSKxRK//CFHMB84aYrYGwEs=",
+ "owner": "NuschtOS",
+ "repo": "ixx",
+ "rev": "9fd01aad037f345350eab2cd45e1946cc66da4eb",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NuschtOS",
+ "ref": "v0.0.6",
+ "repo": "ixx",
"type": "github"
}
},
"linux-tkg": {
"flake": false,
"locked": {
- "lastModified": 1645619844,
- "narHash": "sha256-Rfxcwq4mtYnAzLzqovBiHYUKl6sRy3F5deIp+vtr9xs=",
+ "lastModified": 1779857514,
+ "narHash": "sha256-dCrVB3cFvv1d/9wuEejYN131b1phyf6SDy1bcEvtWGo=",
"owner": "Frogging-Family",
"repo": "linux-tkg",
- "rev": "0d82c95fed6902cd3cb8e1260c17c1ee6756661d",
+ "rev": "c9196dea7ee464f7792f94cd39c32431ad9e25ab",
"type": "github"
},
"original": {
@@ -266,60 +567,20 @@
"type": "github"
}
},
- "multitask": {
- "flake": false,
- "locked": {
- "lastModified": 1634895861,
- "narHash": "sha256-YJomiL8l4YhA5FhjGrSBRnJafAkSPldzETuNubUg1c8=",
- "owner": "powercord-community",
- "repo": "multitask",
- "rev": "0582f00e41e2a0b48003b3817d03d84a5b7619be",
- "type": "github"
- },
- "original": {
- "owner": "powercord-community",
- "repo": "multitask",
- "type": "github"
- }
- },
- "neovim-flake": {
- "inputs": {
- "flake-utils": "flake-utils",
- "nixpkgs": [
- "neovim-nightly",
- "nixpkgs"
- ]
- },
- "locked": {
- "dir": "contrib",
- "lastModified": 1645930271,
- "narHash": "sha256-9dqgGaIk6psLjv5Lmq0lyzSMBzI2IQ8a/h9Wwk2SlDw=",
- "owner": "neovim",
- "repo": "neovim",
- "rev": "8bf3a3e303dbefa47653964dd027074e804b418c",
- "type": "github"
- },
- "original": {
- "dir": "contrib",
- "owner": "neovim",
- "repo": "neovim",
- "type": "github"
- }
- },
"neovim-nightly": {
"inputs": {
- "flake-compat": "flake-compat",
- "neovim-flake": "neovim-flake",
+ "flake-parts": "flake-parts",
+ "neovim-src": "neovim-src",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
- "lastModified": 1645949613,
- "narHash": "sha256-R203mwxwBpKjX7DrYOeCKueif0nItLo9qK+Q+3qvBxQ=",
+ "lastModified": 1780013080,
+ "narHash": "sha256-m984DKbcIeNNuLYFjN3780rPEd55Xe9/cB4BNKkIDvg=",
"owner": "nix-community",
"repo": "neovim-nightly-overlay",
- "rev": "40d48c8512ed9de3f381612b11be235e8d1728ed",
+ "rev": "c6cc238427db8f61b786a66d7e02cf7724b30226",
"type": "github"
},
"original": {
@@ -328,17 +589,34 @@
"type": "github"
}
},
+ "neovim-src": {
+ "flake": false,
+ "locked": {
+ "lastModified": 1779979065,
+ "narHash": "sha256-3uF/oP2D4Jka3DU2G8qqml75UOzPRrK+FIp+jghOq0s=",
+ "owner": "neovim",
+ "repo": "neovim",
+ "rev": "5d85669a33e10f1f156b086562458cbbc8054438",
+ "type": "github"
+ },
+ "original": {
+ "owner": "neovim",
+ "repo": "neovim",
+ "type": "github"
+ }
+ },
"nix-gaming": {
"inputs": {
- "nixpkgs": "nixpkgs",
- "utils": "utils"
+ "flake-parts": "flake-parts_2",
+ "git-hooks": "git-hooks",
+ "nixpkgs": "nixpkgs_10"
},
"locked": {
- "lastModified": 1645826173,
- "narHash": "sha256-F0FU6YnqxjQvpUvgIys7nlAT01Kc/WSZvhyU5Ie0BBg=",
+ "lastModified": 1779768228,
+ "narHash": "sha256-/dRavNAx/Mp67xcQQ3JBIMyf0cLoXqKedafB1+wksAE=",
"owner": "fufexan",
"repo": "nix-gaming",
- "rev": "ce803217dea75649f80dcc6ada7d7edca2b6ddec",
+ "rev": "6e7a8414c0f547a86646eb0b56ebf89e7cc217a2",
"type": "github"
},
"original": {
@@ -347,91 +625,280 @@
"type": "github"
}
},
- "nixos-hardware": {
+ "nix-index-database": {
+ "inputs": {
+ "nixpkgs": [
+ "nixpkgs"
+ ]
+ },
"locked": {
- "lastModified": 1645855197,
- "narHash": "sha256-0FvBpX/9n69vg+XgcMow0RIRYbTHav1uCbL9Xt9HvcA=",
- "owner": "NixOS",
- "repo": "nixos-hardware",
- "rev": "c3c66f6db4ac74a59eb83d83e40c10046ebc0b8c",
+ "lastModified": 1779604987,
+ "narHash": "sha256-ZQ5z+fVhxYKtIFwtqGp5O0PD84BM1riASvqDaN5Xs+s=",
+ "owner": "nix-community",
+ "repo": "nix-index-database",
+ "rev": "8fba98c80b48fa013820e0163c5096922fea4ddd",
"type": "github"
},
"original": {
- "owner": "NixOS",
- "repo": "nixos-hardware",
+ "owner": "nix-community",
+ "repo": "nix-index-database",
"type": "github"
}
},
"nixpkgs": {
"locked": {
- "lastModified": 1645162597,
- "narHash": "sha256-S4sRtJBqVlBg4H7EPAv0NFofGNCayHEMpLnUzGNCCKM=",
- "owner": "NixOS",
+ "lastModified": 1777268161,
+ "narHash": "sha256-bxrdOn8SCOv8tN4JbTF/TXq7kjo9ag4M+C8yzzIRYbE=",
+ "owner": "nixos",
"repo": "nixpkgs",
- "rev": "b715fcd9d9e26b99182d902c6b5694be0daae6d5",
+ "rev": "1c3fe55ad329cbcb28471bb30f05c9827f724c76",
"type": "github"
},
"original": {
- "owner": "NixOS",
+ "owner": "nixos",
+ "ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
- "nixpkgs-porcupine": {
+ "nixpkgs-lib": {
"locked": {
- "lastModified": 1645885043,
- "narHash": "sha256-wDATA3Tks+fG91q3XL673rPQDl58zLRmjdJXpmrUwXU=",
+ "lastModified": 1777168982,
+ "narHash": "sha256-GOkGPcboWE9BmGCRMLX3worL4EMnsnG8MyKmXNeYuhQ=",
+ "owner": "nix-community",
+ "repo": "nixpkgs.lib",
+ "rev": "f5901329dade4a6ea039af1433fb087bd9c1fe14",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nix-community",
+ "repo": "nixpkgs.lib",
+ "type": "github"
+ }
+ },
+ "nixpkgs-stable": {
+ "locked": {
+ "lastModified": 1734600368,
+ "narHash": "sha256-nbG9TijTMcfr+au7ZVbKpAhMJzzE2nQBYmRvSdXUD8g=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "1622abf0e7890a3dac995f6eb5a92f56819ae38e",
+ "rev": "b47fd6fa00c6afca88b8ee46cfdb00e104f50bca",
"type": "github"
},
"original": {
"owner": "NixOS",
- "ref": "nixos-21.11",
+ "ref": "nixos-24.11",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_10": {
+ "locked": {
+ "lastModified": 1779536132,
+ "narHash": "sha256-q+fF42iv/geEbHfgSzy3tS0FF/EyD6XTZ98E6yxiBO8=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "3d8f0f3f72a6cd4d93d0ad13203f2ea1cb7e1456",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixpkgs-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_11": {
+ "locked": {
+ "lastModified": 1779560665,
+ "narHash": "sha256-tpyBcxPpcQb8ukyNF7DoCwfSY3VPsxHoYwj00Cayv5o=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "64c08a7ca051951c8eae34e3e3cb1e202fe36786",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_12": {
+ "locked": {
+ "lastModified": 1770019141,
+ "narHash": "sha256-VKS4ZLNx4PNrABoB0L8KUpc1fE7CLpQXQs985tGfaCU=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "cb369ef2efd432b3cdf8622b0ffc0a97a02f3137",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
- "lastModified": 1645981077,
- "narHash": "sha256-GYgVVYIkCIGt/nZMfEaxhoadQH+eyz3eIXynLk4XR2w=",
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "5ec0477dfc9ee76d935cc77e78fd4861a97593b9",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
"type": "github"
},
"original": {
"owner": "NixOS",
+ "ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
- "no-double-back-pc": {
- "flake": false,
+ "nixpkgs_3": {
"locked": {
- "lastModified": 1638987661,
- "narHash": "sha256-X9NDoZROESodYVfj/Q4Mw29Gz0512IPCy9kmyhA84o8=",
- "owner": "the-cord-plug",
- "repo": "no-double-back-pc",
- "rev": "3134973582ca4f078e69dc6f739a5cb41135eccc",
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
"type": "github"
},
"original": {
- "owner": "the-cord-plug",
- "repo": "no-double-back-pc",
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_4": {
+ "locked": {
+ "lastModified": 1773122722,
+ "narHash": "sha256-FIqHByVqxCprNjor1NqF80F2QQoiiyqanNNefdlvOg4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "62dc67aa6a52b4364dd75994ec00b51fbf474e50",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_5": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_6": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_7": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_8": {
+ "locked": {
+ "lastModified": 1773282481,
+ "narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nixpkgs_9": {
+ "locked": {
+ "lastModified": 1779560665,
+ "narHash": "sha256-tpyBcxPpcQb8ukyNF7DoCwfSY3VPsxHoYwj00Cayv5o=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "64c08a7ca051951c8eae34e3e3cb1e202fe36786",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "nuscht-search": {
+ "inputs": {
+ "flake-utils": "flake-utils",
+ "ixx": "ixx",
+ "nixpkgs": [
+ "catppuccin",
+ "nixpkgs"
+ ]
+ },
+ "locked": {
+ "lastModified": 1733773348,
+ "narHash": "sha256-Y47y+LesOCkJaLvj+dI/Oa6FAKj/T9sKVKDXLNsViPw=",
+ "owner": "NuschtOS",
+ "repo": "search",
+ "rev": "3051be7f403bff1d1d380e4612f0c70675b44fc9",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NuschtOS",
+ "repo": "search",
"type": "github"
}
},
"nvim-treesitter": {
"flake": false,
"locked": {
- "lastModified": 1645961925,
- "narHash": "sha256-YzeRnvTjX9X5sBzynawmisArchZnA6iyOvL9AW4Btrg=",
+ "lastModified": 1775221900,
+ "narHash": "sha256-PQR6tFt4lCrAZNQG7BLMD1IiCKja9wDS1S4laGJf/HE=",
"owner": "nvim-treesitter",
"repo": "nvim-treesitter",
- "rev": "b6ebdaeb4437d3469d7a0e0d723d3fb514c4d6ae",
+ "rev": "4916d6592ede8c07973490d9322f187e07dfefac",
"type": "github"
},
"original": {
@@ -440,83 +907,57 @@
"type": "github"
}
},
- "packwiz": {
- "flake": false,
- "locked": {
- "lastModified": 1645377284,
- "narHash": "sha256-kjX/NtAZCkE9tK+iuRM5VXkSTgkUsPacz2fK22g6vqk=",
- "owner": "comp500",
- "repo": "packwiz",
- "rev": "2dd0a1ae78373ef84327c612561c57f3503d5f78",
- "type": "github"
- },
- "original": {
- "owner": "comp500",
- "repo": "packwiz",
- "type": "github"
- }
- },
- "powercord": {
- "flake": false,
- "locked": {
- "lastModified": 1646258494,
- "narHash": "sha256-TU2yXr9T5zMSumciw9IaYRP1Tt7uy97opgFSYa7rP2o=",
- "owner": "powercord-org",
- "repo": "powercord",
- "rev": "8b99354d3186ef34b3ea239da4b07d6f157a7714",
- "type": "github"
- },
- "original": {
- "owner": "powercord-org",
- "repo": "powercord",
- "type": "github"
- }
- },
- "powercord-overlay": {
+ "pastel": {
"inputs": {
- "nixpkgs": [
- "nixpkgs"
- ],
- "powercord": "powercord"
+ "flake-utils": "flake-utils_2",
+ "nixpkgs": "nixpkgs_12",
+ "pnpm2nix": "pnpm2nix"
},
"locked": {
- "lastModified": 1646308577,
- "narHash": "sha256-6frqjMZXe1Qpc3Bg+nv+bS4FFuKWb3xGnzatVcu8HXs=",
- "owner": "LavaDesu",
- "repo": "powercord-overlay",
- "rev": "85029adccb6fbbdbeacea3c296fbb225e7eb8ae1",
+ "lastModified": 1775622883,
+ "narHash": "sha256-2+7uCRXn+tn4LVaO7hLKPaezdKPW6HGvTr00aO4Tcxs=",
+ "owner": "cillynder",
+ "repo": "pastel",
+ "rev": "46f6569d5ad41ec1256dbf999d21701f73d6077b",
"type": "github"
},
"original": {
- "owner": "LavaDesu",
- "repo": "powercord-overlay",
+ "owner": "cillynder",
+ "repo": "pastel",
"type": "github"
}
},
- "powercord-popout-fix": {
- "flake": false,
+ "pnpm2nix": {
+ "inputs": {
+ "flake-utils": "flake-utils_3",
+ "nixpkgs": [
+ "pastel",
+ "nixpkgs"
+ ]
+ },
"locked": {
- "lastModified": 1609018964,
- "narHash": "sha256-wfuTvKeBEzaNlc/5CuqbKwbfWHoomd2KG78a7JfYQ7c=",
- "owner": "Nexure",
- "repo": "PowerCord-Popout-Fix",
- "rev": "54c85f6f25bf8183846ab976160638cdafa86b51",
+ "lastModified": 1717937937,
+ "narHash": "sha256-bKoHjG5P15vCVpDndIXFfoJC65XhrBPQ9GWcXtXNuDA=",
+ "owner": "wrvsrx",
+ "repo": "pnpm2nix-nzbr",
+ "rev": "a2d285ad5718cb202f45e98a4f839a5b2608c4b1",
"type": "github"
},
"original": {
- "owner": "Nexure",
- "repo": "PowerCord-Popout-Fix",
+ "owner": "wrvsrx",
+ "ref": "adapt-to-v9",
+ "repo": "pnpm2nix-nzbr",
"type": "github"
}
},
"pure": {
"flake": false,
"locked": {
- "lastModified": 1645044543,
- "narHash": "sha256-iuLi0o++e0PqK81AKWfIbCV0CTIxq2Oki6U2oEYsr68=",
+ "lastModified": 1779255807,
+ "narHash": "sha256-UQ0hP3qJd4Qxiw1LXPdb9d0Dc4OSD3HJpgYzaCfujno=",
"owner": "sindresorhus",
"repo": "pure",
- "rev": "5b458ba5b75f49a8071d53c343f1a23631f7bced",
+ "rev": "cc0759a0de620f191510e2e2f9748194a605b54d",
"type": "github"
},
"original": {
@@ -525,95 +966,52 @@
"type": "github"
}
},
- "radialstatus": {
- "flake": false,
- "locked": {
- "lastModified": 1643618398,
- "narHash": "sha256-fVjwJm0PTahegmLf1Ji7JhBFhkn28xCo4hTF/vIvv+4=",
- "owner": "DiscordStyles",
- "repo": "RadialStatus",
- "rev": "35b6af46a6585b4d0906fa6e3d025a327780a56f",
- "type": "github"
- },
- "original": {
- "owner": "DiscordStyles",
- "repo": "RadialStatus",
- "type": "github"
- }
- },
- "rolecolor-everywhere": {
- "flake": false,
- "locked": {
- "lastModified": 1643121993,
- "narHash": "sha256-DFodM6y9UcJbgke/Q/VLqDn23FEY8jcXeiJ20A9YkTk=",
- "owner": "powercord-community",
- "repo": "rolecolor-everywhere",
- "rev": "6cb981117b133acc5bda9ee5704d6944f6ea8839",
- "type": "github"
- },
- "original": {
- "owner": "powercord-community",
- "repo": "rolecolor-everywhere",
- "type": "github"
- }
- },
"root": {
"inputs": {
+ "aagl": "aagl",
"agenix": "agenix",
- "better-status-indicators": "better-status-indicators",
- "channel-typing": "channel-typing",
- "discord-tokyonight": "discord-tokyonight",
- "discord-tweaks": "discord-tweaks",
- "discover": "discover",
+ "c-amethyst": "c-amethyst",
+ "c-beryllium": "c-beryllium",
+ "c-citrine": "c-citrine",
+ "c-diamond": "c-diamond",
+ "c-emerald": "c-emerald",
+ "c-fluorite": "c-fluorite",
+ "c-garnet": "c-garnet",
+ "catppuccin": "catppuccin_2",
+ "catppuccin-palette": "catppuccin-palette",
"fast-syntax-highlighting": "fast-syntax-highlighting",
- "fix-user-popouts": "fix-user-popouts",
- "home-manager": "home-manager",
- "home-manager-porcupine": "home-manager-porcupine",
- "hosts-blocklists": "hosts-blocklists",
+ "home-manager": "home-manager_3",
"linux-tkg": "linux-tkg",
- "multitask": "multitask",
"neovim-nightly": "neovim-nightly",
"nix-gaming": "nix-gaming",
- "nixos-hardware": "nixos-hardware",
- "nixpkgs": "nixpkgs_2",
- "nixpkgs-porcupine": "nixpkgs-porcupine",
- "no-double-back-pc": "no-double-back-pc",
+ "nix-index-database": "nix-index-database",
+ "nixpkgs": "nixpkgs_11",
"nvim-treesitter": "nvim-treesitter",
- "packwiz": "packwiz",
- "powercord-overlay": "powercord-overlay",
- "powercord-popout-fix": "powercord-popout-fix",
+ "pastel": "pastel",
"pure": "pure",
- "radialstatus": "radialstatus",
- "rolecolor-everywhere": "rolecolor-everywhere",
- "rust-overlay": "rust-overlay",
+ "spicetify-nix": "spicetify-nix",
"spotify-adblock": "spotify-adblock",
- "theme-toggler": "theme-toggler",
- "tokyonight": "tokyonight",
- "tree-sitter-glimmer": "tree-sitter-glimmer",
+ "stevenblack-hosts": "stevenblack-hosts",
"tree-sitter-jsonc": "tree-sitter-jsonc",
- "twemoji-but-good": "twemoji-but-good",
- "view-raw": "view-raw",
"website": "website",
- "who-reacted": "who-reacted",
"wine-discord-ipc-bridge": "wine-discord-ipc-bridge",
- "zelk": "zelk",
"zsh-abbr": "zsh-abbr",
"zsh-history-substring-search": "zsh-history-substring-search"
}
},
"rust-overlay": {
"inputs": {
- "flake-utils": "flake-utils_3",
"nixpkgs": [
+ "aagl",
"nixpkgs"
]
},
"locked": {
- "lastModified": 1645928338,
- "narHash": "sha256-pNbkG19Nb4QTNRCIWwxv06JKKJNCUrDzgRrriEd7W1A=",
+ "lastModified": 1777605393,
+ "narHash": "sha256-Hjp0VOOHgHcTrX23iVvnfAudPcuCmfkfpQNFwv2v/ks=",
"owner": "oxalica",
"repo": "rust-overlay",
- "rev": "4f6e6588b07427cd8ddc99b664bf0fab02799804",
+ "rev": "ff88db34cfa486fc4964a6991cab1678d82eee8c",
"type": "github"
},
"original": {
@@ -622,14 +1020,35 @@
"type": "github"
}
},
+ "spicetify-nix": {
+ "inputs": {
+ "nixpkgs": [
+ "nixpkgs"
+ ],
+ "systems": "systems_5"
+ },
+ "locked": {
+ "lastModified": 1779824049,
+ "narHash": "sha256-dWHVUjP03KSVG1PaLKA6j9EdxWSxSQvipMUIcSyuA/U=",
+ "owner": "Gerg-L",
+ "repo": "spicetify-nix",
+ "rev": "1362178e5f5f7a848c49fe9dee004ef8824f100a",
+ "type": "github"
+ },
+ "original": {
+ "owner": "Gerg-L",
+ "repo": "spicetify-nix",
+ "type": "github"
+ }
+ },
"spotify-adblock": {
"flake": false,
"locked": {
- "lastModified": 1643743965,
- "narHash": "sha256-BzjUzKpLsjHqnhp26B3MTrhPa5tPHq3BkIbfowObaYA=",
+ "lastModified": 1773417310,
+ "narHash": "sha256-nwiX2wCZBKRTNPhmrurWQWISQdxgomdNwcIKG2kSQsE=",
"owner": "abba23",
"repo": "spotify-adblock",
- "rev": "1473f84867d436ad7bd588209acea63674dc631d",
+ "rev": "813d3451c53126bf1941baaf8dd37f1152c3f412",
"type": "github"
},
"original": {
@@ -638,62 +1057,105 @@
"type": "github"
}
},
- "theme-toggler": {
+ "stevenblack-hosts": {
"flake": false,
"locked": {
- "lastModified": 1636501799,
- "narHash": "sha256-wq1x1rNBkcTuATDbR9yLykUmMRGGRPg6fDfPxl4qE2Q=",
- "owner": "redstonekasi",
- "repo": "theme-toggler",
- "rev": "c8063b35ec9d42064d36845950a53cd6e2099458",
+ "lastModified": 1779976382,
+ "narHash": "sha256-wt5NGa4K8/vda669UYUmTUt+BR9X5fPnuTZFfQdpLYo=",
+ "owner": "StevenBlack",
+ "repo": "hosts",
+ "rev": "d3e838712512490260f051150e3573eeebecfadb",
"type": "github"
},
"original": {
- "owner": "redstonekasi",
- "repo": "theme-toggler",
+ "owner": "StevenBlack",
+ "repo": "hosts",
"type": "github"
}
},
- "tokyonight": {
- "flake": false,
+ "systems": {
"locked": {
- "lastModified": 1642422064,
- "narHash": "sha256-QEivgRi4m0eHskLgzptjcPOUvGEjbQHGfSOMOaOBokQ=",
- "owner": "Dyzean",
- "repo": "Tokyo-Night",
- "rev": "d660358b8664e36b13f7b183461f64aac93d2e33",
+ "lastModified": 1681028828,
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+ "owner": "nix-systems",
+ "repo": "default",
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
- "owner": "Dyzean",
- "repo": "Tokyo-Night",
+ "owner": "nix-systems",
+ "repo": "default",
"type": "github"
}
},
- "tree-sitter-glimmer": {
- "flake": false,
+ "systems_2": {
"locked": {
- "lastModified": 1644833564,
- "narHash": "sha256-YOqqmv7DoRhMFhGrl86bKuYMcavKJ+BBbPa0g7ikY9U=",
- "owner": "alexlafroscia",
- "repo": "tree-sitter-glimmer",
- "rev": "ffc91bfd011fd7fac593c3c2f0661c1d21ace3f2",
+ "lastModified": 1681028828,
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+ "owner": "nix-systems",
+ "repo": "default",
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
- "owner": "alexlafroscia",
- "repo": "tree-sitter-glimmer",
+ "owner": "nix-systems",
+ "repo": "default",
+ "type": "github"
+ }
+ },
+ "systems_3": {
+ "locked": {
+ "lastModified": 1681028828,
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+ "owner": "nix-systems",
+ "repo": "default",
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nix-systems",
+ "repo": "default",
+ "type": "github"
+ }
+ },
+ "systems_4": {
+ "locked": {
+ "lastModified": 1681028828,
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+ "owner": "nix-systems",
+ "repo": "default",
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nix-systems",
+ "repo": "default",
+ "type": "github"
+ }
+ },
+ "systems_5": {
+ "locked": {
+ "lastModified": 1681028828,
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+ "owner": "nix-systems",
+ "repo": "default",
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nix-systems",
+ "repo": "default",
"type": "github"
}
},
"tree-sitter-jsonc": {
"flake": false,
"locked": {
- "lastModified": 1615145540,
- "narHash": "sha256-iWc2ePRiQnZ0FEdMAaAwa3iYt/SY0bEjQrZyqE9EhlU=",
+ "lastModified": 1769637052,
+ "narHash": "sha256-V38tvBHJsSHJbj8QrMbt5hz2q8WLf4jtKsTiAo98/Vo=",
"owner": "WhyNotHugo",
"repo": "tree-sitter-jsonc",
- "rev": "02b01653c8a1c198ae7287d566efa86a135b30d5",
+ "rev": "f7890ba894d885d1b2b721cfae759b07d53c8886",
"type": "gitlab"
},
"original": {
@@ -702,97 +1164,31 @@
"type": "gitlab"
}
},
- "twemoji-but-good": {
- "flake": false,
- "locked": {
- "lastModified": 1587519895,
- "narHash": "sha256-tuIahxrNA2bUXfQOf9vGrbE2owNyl4aPZhY78WjEQ3Q=",
- "owner": "powercord-community",
- "repo": "twemoji-but-good",
- "rev": "41234befbdcfc0c277b6518d28d4d3c217dda236",
- "type": "github"
- },
- "original": {
- "owner": "powercord-community",
- "repo": "twemoji-but-good",
- "type": "github"
- }
- },
- "utils": {
- "inputs": {
- "flake-utils": "flake-utils_2"
- },
- "locked": {
- "lastModified": 1639385028,
- "narHash": "sha256-oqorKz3mwf7UuDJwlbCEYCB2LfcWLL0DkeCWhRIL820=",
- "owner": "gytis-ivaskevicius",
- "repo": "flake-utils-plus",
- "rev": "be1be083af014720c14f3b574f57b6173b4915d0",
- "type": "github"
- },
- "original": {
- "owner": "gytis-ivaskevicius",
- "repo": "flake-utils-plus",
- "type": "github"
- }
- },
- "view-raw": {
- "flake": false,
- "locked": {
- "lastModified": 1642345518,
- "narHash": "sha256-/cJRitjNsx7Y/t0Cff8uopLw7LBLMz94Wwpf6CXvTKc=",
- "owner": "Juby210",
- "repo": "view-raw",
- "rev": "9d5848da504914ad6bf516a834cd2c883ef86700",
- "type": "github"
- },
- "original": {
- "owner": "Juby210",
- "repo": "view-raw",
- "type": "github"
- }
- },
"website": {
"flake": false,
"locked": {
- "lastModified": 1648213051,
- "narHash": "sha256-474ikN1CPqpd7d/E71cq13ZokuSJyMRe0dRFsczqVxE=",
- "owner": "LavaDesu",
+ "lastModified": 1668017714,
+ "narHash": "sha256-ywy/7xeT6FHkF7lcs+stW1WPV+piE8ztSwcQ161iico=",
+ "owner": "cillynder",
"repo": "lavadesu.github.io",
- "rev": "90c46007ec92fbd818b29c218f99869f594b9d95",
+ "rev": "4e30c50be520a0a1bbecf408f056e6aaf135df67",
"type": "github"
},
"original": {
- "owner": "LavaDesu",
+ "owner": "cillynder",
"ref": "master",
"repo": "lavadesu.github.io",
"type": "github"
}
},
- "who-reacted": {
- "flake": false,
- "locked": {
- "lastModified": 1614971312,
- "narHash": "sha256-KUZP6dqqcVzr/3/iuL1URyuNxEqNfOHeE4CwC1wb+zU=",
- "owner": "jaimeadf",
- "repo": "who-reacted",
- "rev": "fa5391bc1791734f7a27d011ba82c37f4e455df4",
- "type": "github"
- },
- "original": {
- "owner": "jaimeadf",
- "repo": "who-reacted",
- "type": "github"
- }
- },
"wine-discord-ipc-bridge": {
"flake": false,
"locked": {
- "lastModified": 1643834815,
- "narHash": "sha256-Nrd/ZEwdxydnwEymSC+TrvzdDNacOdCYuobNPOyOGq4=",
+ "lastModified": 1730092778,
+ "narHash": "sha256-jzsbOKMakNQ6RNMlioX088fGzFBDxOP45Atlsfm2RKg=",
"owner": "0e4ef622",
"repo": "wine-discord-ipc-bridge",
- "rev": "2584e36705fb7dd3a5b052095ea6890b9ab46769",
+ "rev": "86fcbddaf654aec40c6fe6a8293f627340331b0c",
"type": "github"
},
"original": {
@@ -801,46 +1197,32 @@
"type": "github"
}
},
- "zelk": {
- "flake": false,
- "locked": {
- "lastModified": 1644873117,
- "narHash": "sha256-o5qfGFRUUz12iTfSShdUSy/TUYATwVv+RlCAGwfuZoM=",
- "owner": "schnensch0",
- "repo": "zelk",
- "rev": "6e01fc129f76ce0349a006add4d54c26b6cf3a38",
- "type": "github"
- },
- "original": {
- "owner": "schnensch0",
- "repo": "zelk",
- "type": "github"
- }
- },
"zsh-abbr": {
"flake": false,
"locked": {
- "lastModified": 1641236044,
- "narHash": "sha256-6T27TTD4V3nzx1D8vhMpn2FIodYtLkOBoi6J7GYNV6k=",
- "owner": "olets",
- "repo": "zsh-abbr",
- "rev": "91280150cf8de09f84ab02c00fc04605400ea914",
- "type": "github"
+ "lastModified": 1773890443,
+ "narHash": "sha256-SVuwDeHIBg8yArKGzDEfsG3fz0UwABQoJkyKTQAPUiw=",
+ "ref": "refs/heads/main",
+ "rev": "889f4772c12b9dbe4965bbd56f2572af0a28fa3b",
+ "revCount": 1139,
+ "submodules": true,
+ "type": "git",
+ "url": "https://github.com/olets/zsh-abbr"
},
"original": {
- "owner": "olets",
- "repo": "zsh-abbr",
- "type": "github"
+ "submodules": true,
+ "type": "git",
+ "url": "https://github.com/olets/zsh-abbr"
}
},
"zsh-history-substring-search": {
"flake": false,
"locked": {
- "lastModified": 1627971553,
- "narHash": "sha256-8kiPBtgsjRDqLWt0xGJ6vBBLqCWEIyFpYfd+s1prHWk=",
+ "lastModified": 1768499095,
+ "narHash": "sha256-KHujL1/TM5R3m4uQh2nGVC98D6MOyCgQpyFf+8gjKR0=",
"owner": "zsh-users",
"repo": "zsh-history-substring-search",
- "rev": "4abed97b6e67eb5590b39bcd59080aa23192f25d",
+ "rev": "14c8d2e0ffaee98f2df9850b19944f32546fdea5",
"type": "github"
},
"original": {
diff --git a/flake.nix b/flake.nix
index 7a0dbdb..5cf3457 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,118 +1,101 @@
{
inputs = {
- nixpkgs.url = "github:NixOS/nixpkgs";
- nixpkgs-porcupine.url = "github:NixOS/nixpkgs/nixos-21.11";
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
- home-manager-porcupine.url = "github:LavaDesu/home-manager/backport/gpg-agent";
- neovim-nightly.url = "github:nix-community/neovim-nightly-overlay";
- nixos-hardware.url = "github:NixOS/nixos-hardware";
- agenix.url = "github:ryantm/agenix";
-
- agenix.inputs.nixpkgs.follows = "nixpkgs";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
- home-manager-porcupine.inputs.nixpkgs.follows = "nixpkgs-porcupine";
+
+ agenix.url = "github:ryantm/agenix";
+ agenix.inputs.nixpkgs.follows = "nixpkgs";
+ aagl.url = "github:ezKEa/aagl-gtk-on-nix";
+ catppuccin.url = "github:catppuccin/nix/8eada392fd6571a747e1c5fc358dd61c14c8704e";
+ catppuccin.inputs.nixpkgs.follows = "nixpkgs";
+ catppuccin-palette = { url = "github:catppuccin/palette"; flake = false; };
+ neovim-nightly.url = "github:nix-community/neovim-nightly-overlay";
neovim-nightly.inputs.nixpkgs.follows = "nixpkgs";
nix-gaming.url = "github:fufexan/nix-gaming";
- powercord-overlay.url = "github:LavaDesu/powercord-overlay";
- powercord-overlay.inputs.nixpkgs.follows = "nixpkgs";
+ nix-index-database.url = "github:nix-community/nix-index-database";
+ nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
+ spicetify-nix.url = "github:Gerg-L/spicetify-nix";
+ spicetify-nix.inputs.nixpkgs.follows = "nixpkgs";
# services
- hosts-blocklists = { url = "github:notracking/hosts-blocklists"; flake = false; };
- website = { url = "github:LavaDesu/lavadesu.github.io/master"; flake = false; };
+ pastel.url = "github:cillynder/pastel";
+ stevenblack-hosts = { url = "github:StevenBlack/hosts"; flake = false; };
+ website = { url = "github:cillynder/lavadesu.github.io/master"; flake = false; };
# zsh plugins
- zsh-abbr = { url = "github:olets/zsh-abbr"; flake = false; };
+ zsh-abbr = { url = "git+https://github.com/olets/zsh-abbr?submodules=1"; flake = false; };
zsh-history-substring-search = { url = "github:zsh-users/zsh-history-substring-search"; flake = false; };
fast-syntax-highlighting = { url = "github:zdharma-continuum/fast-syntax-highlighting"; flake = false; };
pure = { url = "github:sindresorhus/pure"; flake = false; };
# overlays
- discord-tokyonight = { url = "github:DanisDGK/zelk-customizations"; flake = false; };
- discover = { url = "github:trigg/Discover"; flake = false; };
linux-tkg = { url = "github:Frogging-Family/linux-tkg"; flake = false; };
nvim-treesitter = { url = "github:nvim-treesitter/nvim-treesitter"; flake = false; };
- packwiz = { url = "github:comp500/packwiz"; flake = false; };
spotify-adblock = { url = "github:abba23/spotify-adblock"; flake = false; };
- tree-sitter-glimmer = { url = "github:alexlafroscia/tree-sitter-glimmer"; flake = false; };
tree-sitter-jsonc = { url = "gitlab:WhyNotHugo/tree-sitter-jsonc"; flake = false; };
wine-discord-ipc-bridge = { url = "github:0e4ef622/wine-discord-ipc-bridge"; flake = false; };
- # shells
- rust-overlay.url = "github:oxalica/rust-overlay";
- rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
-
- # powercord plugins/themes
- better-status-indicators = { url = "github:griefmodz/better-status-indicators"; flake = false; };
- channel-typing = { url = "github:powercord-community/channel-typing"; flake = false; };
- discord-tweaks = { url = "github:NurMarvin/discord-tweaks"; flake = false; };
- fix-user-popouts = { url = "github:cyyynthia/fix-user-popouts"; flake = false; };
- multitask = { url = "github:powercord-community/multitask"; flake = false; };
- no-double-back-pc = { url = "github:the-cord-plug/no-double-back-pc"; flake = false; };
- powercord-popout-fix = { url = "github:Nexure/PowerCord-Popout-Fix"; flake = false; };
- rolecolor-everywhere = { url = "github:powercord-community/rolecolor-everywhere"; flake = false; };
- theme-toggler = { url = "github:redstonekasi/theme-toggler"; flake = false; };
- twemoji-but-good = { url = "github:powercord-community/twemoji-but-good"; flake = false; };
- view-raw = { url = "github:Juby210/view-raw"; flake = false; };
- who-reacted = { url = "github:jaimeadf/who-reacted"; flake = false; };
-
- radialstatus = { url = "github:DiscordStyles/RadialStatus"; flake = false; };
- tokyonight = { url = "github:Dyzean/Tokyo-Night"; flake = false; };
- zelk = { url = "github:schnensch0/zelk"; flake = false; };
+ # containers
+ c-amethyst.url = "path:./containers/amethyst";
+ c-beryllium.url = "path:./containers/beryllium";
+ c-citrine.url = "path:./containers/citrine";
+ c-diamond.url = "path:./containers/diamond";
+ c-emerald.url = "path:./containers/emerald";
+ c-fluorite.url = "path:./containers/fluorite";
+ c-garnet.url = "path:./containers/garnet";
};
- outputs = { self, agenix, nixpkgs, nixpkgs-porcupine, ... } @ inputs:
+ outputs = { self, agenix, catppuccin, nixpkgs, ... } @ inputs:
let
overlays = (import ./overlays)
- ++ [inputs.powercord-overlay.overlay]
++ [(final: prev: {
me = prev.callPackage ./packages { inherit inputs; } // { inherit inputs; };
})];
+ patchOverlaysWithLinuxLava = nixpkgs: arch: ([(self: super: {
+ linuxLavaNixpkgs = import nixpkgs {
+ overlays = [ (import ./overlays/linux-lava.nix) ] ++ overlays;
+ system = arch;
+ };
+ })] ++ overlays);
+
mkSystem =
if !(self ? rev) then throw "Dirty git tree detected." else
- nixpkgs: name: arch: enableGUI: nixpkgs.lib.nixosSystem {
+ nixpkgs: name: arch: extraModules: nixpkgs.lib.nixosSystem {
system = arch;
modules = [
- { nixpkgs.overlays = overlays; }
+ ({
+ nixpkgs.overlays = patchOverlaysWithLinuxLava nixpkgs arch;
+ })
agenix.nixosModules.age
+ catppuccin.nixosModules.catppuccin
(./hosts + "/${name}")
- ];
+ ] ++ extraModules;
specialArgs = {
- inherit inputs enableGUI;
+ inherit inputs;
modules = import ./modules { lib = nixpkgs.lib; };
+ gcSecrets = builtins.fromJSON (builtins.readFile "${self}/secrets.gcrypt/shared.json");
};
};
in
{
- nixosConfigurations."blossom" = mkSystem nixpkgs "blossom" "x86_64-linux" true;
-
- nixosConfigurations."caramel" = mkSystem nixpkgs-porcupine "caramel" "aarch64-linux" false;
- nixosConfigurations."sugarcane" = mkSystem nixpkgs-porcupine "sugarcane" "x86_64-linux" false;
+ nixosConfigurations."alyssum" = mkSystem nixpkgs "alyssum" "x86_64-linux" [];
+ nixosConfigurations."anemone" = mkSystem nixpkgs "anemone" "x86_64-linux" [];
+ nixosConfigurations."dandelion" = mkSystem nixpkgs "dandelion" "aarch64-linux" [];
+ nixosConfigurations."hyacinth" = mkSystem nixpkgs "hyacinth" "x86_64-linux" [];
packages."x86_64-linux" =
let
- pkgs = import nixpkgs {
- inherit overlays;
+ pkgs = import nixpkgs rec {
+ overlays = patchOverlaysWithLinuxLava nixpkgs system;
system = "x86_64-linux";
};
in
{
- inherit (pkgs.me) linux-lava;
+ inherit (pkgs.me) linux-lava spotify-adblock;
+ linux-lava-ccache = pkgs.me.linux-lava.override { useCcache = true; };
};
-
- packages."aarch64-linux" =
- let
- pkgs = import nixpkgs-porcupine {
- inherit overlays;
- system = "aarch64-linux";
- };
- in
- {
- inherit (pkgs) nixUnstable;
- };
-
- # TODO: currently broken
- # devShells.x86_64-linux = pkgs.callPackage ./shells { inherit inputs; };
};
}
diff --git a/hosts/alyssum/default.nix b/hosts/alyssum/default.nix
new file mode 100644
index 0000000..06c415f
--- /dev/null
+++ b/hosts/alyssum/default.nix
@@ -0,0 +1,45 @@
+{ inputs, lib, modules, modulesPath, ... }: {
+ networking.hostName = "alyssum";
+ system.stateVersion = "25.11";
+ time.timeZone = "Australia/Melbourne";
+
+ age.secrets = {
+ acme_dns.file = ../../secrets/acme_dns.age;
+ passwd.file = ../../secrets/passwd.age;
+ navidrome_env.file = ../../secrets/navidrome_env.age;
+ wpa_conf = {
+ file = ../../secrets/wpa_conf.age;
+ path = "/etc/wpa_supplicant/imperative.conf";
+ symlink = false;
+ };
+ };
+
+ imports = with modules.system; [
+ (modulesPath + "/profiles/qemu-guest.nix")
+ home-manager
+
+ base
+ kernel
+ nix-stable
+ packages
+ security
+ tailscale
+
+ modules.services.nginx
+ modules.services.syncthing
+
+ inputs.c-emerald.nixosModule
+ inputs.c-garnet.nixosModule
+
+ ./filesystem.nix
+ ./kernel.nix
+ ./networking.nix
+ ./home.syncthing.nix
+ ./samba.nix
+
+ ../../users/hana
+ ];
+
+ me.environment = "headless";
+ services.syncthing.user = lib.mkForce "hana";
+}
diff --git a/hosts/alyssum/filesystem.nix b/hosts/alyssum/filesystem.nix
new file mode 100644
index 0000000..bdea423
--- /dev/null
+++ b/hosts/alyssum/filesystem.nix
@@ -0,0 +1,35 @@
+{ ... }:
+let
+ bind = src: {
+ depends = [ "/nix" ];
+ device = src;
+ fsType = "none";
+ neededForBoot = true;
+ options = [ "bind" ];
+ };
+
+ mkLabelMount = label: type: {
+ device = "/dev/disk/by-label/${label}";
+ fsType = type;
+ options = [ "defaults" "relatime" ];
+ };
+ mkBtrfsMount = name: subvol: atime: mkLabelMount name "btrfs" // {
+ options = [ "autodefrag" "compress=zstd:3" "defaults" "discard=async" "space_cache=v2" "ssd" "subvol=${subvol}" (if atime then "relatime" else "noatime") ];
+ };
+ submount = mkBtrfsMount "alyssum";
+in {
+ fileSystems = {
+ "/" = {
+ device = "rootfs";
+ fsType = "tmpfs";
+ options = [ "defaults" "size=8G" "mode=755" ];
+ };
+ "/boot" = mkLabelMount "stem" "vfat";
+
+ "/flower" = mkBtrfsMount "myosotis" "/@" true;
+ "/nix" = submount "/@/nix" false;
+ "/persist" = (submount "/@/persist" true) // { neededForBoot = true; };
+ "/persist/.snapshots" = submount "/snap/persist" false;
+ "/var/log/journal" = bind "/persist/journal";
+ };
+}
diff --git a/hosts/alyssum/home.syncthing.nix b/hosts/alyssum/home.syncthing.nix
new file mode 100644
index 0000000..8d5a1cc
--- /dev/null
+++ b/hosts/alyssum/home.syncthing.nix
@@ -0,0 +1,39 @@
+{ config, lib, ... }:
+let
+ configOn = user: port: {
+ me.binds."/home/${user}/.config/syncthing" = "${user}/syncthing/config";
+ me.binds."/home/${user}/.local/state/syncthing" = "${user}/syncthing/state";
+
+ systemd.tmpfiles.rules = [ "d /flower/syncthing/${user} 700 ${user} users" ];
+
+ users.users.${user} = {
+ hashedPasswordFile = config.age.secrets.passwd.path;
+ isNormalUser = true;
+ linger = true;
+ };
+ home-manager.users.${user} = { ... }: {
+ home = {
+ username = "${user}";
+ homeDirectory = "/home/${user}";
+ stateVersion = "26.05";
+ };
+ services.syncthing = {
+ enable = true;
+ guiAddress = "[::]:${toString port}";
+ overrideDevices = false;
+ overrideFolders = false;
+ settings = {
+ options.listenAddresses = [
+ "tcp://0.0.0.0:2${toString port}"
+ "quic://0.0.0.0:2${toString port}"
+ "dynamic+https://relays.syncthing.net/endpoint"
+ ];
+ defaults.folder.path = "/flower/syncthing/${user}";
+ };
+ };
+ };
+ };
+in lib.mkMerge [
+ (configOn "kujira" 8385)
+ (configOn "cilly" 8386)
+]
diff --git a/hosts/alyssum/kernel.nix b/hosts/alyssum/kernel.nix
new file mode 100644
index 0000000..5e9b300
--- /dev/null
+++ b/hosts/alyssum/kernel.nix
@@ -0,0 +1,12 @@
+{ config, lib, ... }: {
+ boot = {
+ loader = {
+ efi.canTouchEfiVariables = true;
+ systemd-boot.enable = true;
+ };
+ initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" "rtsx_usb_sdmmc" ];
+ initrd.kernelModules = [ ];
+ kernelModules = [ "kvm-amd" ];
+ };
+ hardware.cpu.amd.updateMicrocode = true;
+}
diff --git a/hosts/alyssum/networking.nix b/hosts/alyssum/networking.nix
new file mode 100644
index 0000000..281cbb6
--- /dev/null
+++ b/hosts/alyssum/networking.nix
@@ -0,0 +1,15 @@
+{ config, ... }: {
+ networking = {
+ useDHCP = true;
+ wireless.enable = true;
+
+ interfaces.wlp1s0.useDHCP = false;
+ interfaces.wlp1s0.ipv4.addresses = [{
+ address = "192.168.1.167";
+ prefixLength = 24;
+ }];
+
+ defaultGateway = "192.168.1.1";
+ nameservers = [ "8.8.8.8" "8.8.4.4" ];
+ };
+}
diff --git a/hosts/caramel/packages.nix b/hosts/alyssum/packages.nix
similarity index 88%
rename from hosts/caramel/packages.nix
rename to hosts/alyssum/packages.nix
index e3e3f15..2d4bd30 100644
--- a/hosts/caramel/packages.nix
+++ b/hosts/alyssum/packages.nix
@@ -1,4 +1,4 @@
-{ lib, pkgs, ... }: {
+{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
git
htop
diff --git a/hosts/alyssum/samba.nix b/hosts/alyssum/samba.nix
new file mode 100644
index 0000000..d876981
--- /dev/null
+++ b/hosts/alyssum/samba.nix
@@ -0,0 +1,84 @@
+{ config, lib, pkgs, ... }:
+let
+ configOn = user: let
+ passwd_fname = "passwd_smb${user}";
+ in {
+ age.secrets.${passwd_fname}.file = ../../secrets/${passwd_fname}.age;
+ me.binds."/flower/smb/${user}/music" = "/flower/media/music/${user}";
+ me.binds."/flower/smb/${user}/syncthing" = "/flower/syncthing/${user}";
+
+ users.users.${user} = {
+ hashedPasswordFile = config.age.secrets.passwd.path;
+ isNormalUser = true;
+ };
+
+ system.activationScripts = {
+ init_smbpasswd.text = let
+ smbpasswd = "${config.services.samba.package}/bin/smbpasswd";
+ in ''
+ printf "$(cat ${config.age.secrets.${passwd_fname}.path})\n$(cat ${config.age.secrets.${passwd_fname}.path})\n" | ${smbpasswd} -sa ${user}
+ '';
+ };
+ services.samba.settings."${user}" = {
+ "path" = "/flower/smb/${user}";
+ "browseable" = "yes";
+ "read only" = "no";
+ "guest ok" = "no";
+ "create mask" = "0644";
+ "directory mask" = "0755";
+ "force user" = user;
+ "force group" = "users";
+ "valid users" = user;
+ };
+ };
+in lib.mkMerge [
+ (configOn "cilly")
+ (configOn "kujira")
+ {
+ me.binds."/flower/smb/kujira/opencloud" = "/flower/opencloud/data/storage/users/users/a8e29fc0-673c-4c67-be00-2442904acb43";
+
+ networking.firewall.allowPing = true;
+
+ services.samba = {
+ enable = true;
+ package = pkgs.samba4Full;
+ openFirewall = true;
+ settings = {
+ global = {
+ "server smb encrypt" = "required";
+ "workgroup" = "WORKGROUP";
+ "server string" = "smbnix";
+ "netbios name" = "smbnix";
+ "security" = "user";
+ "hosts allow" = "100.64.0.0/10 127.0.0.1 alyssum localhost";
+ "hosts deny" = "0.0.0.0/0";
+ "guest account" = "nobody";
+ "map to guest" = "bad user";
+ };
+ "public" = {
+ "path" = "/flower/smb/public";
+ "browseable" = "yes";
+ "read only" = "no";
+ "guest ok" = "yes";
+ "create mask" = "0644";
+ "directory mask" = "0755";
+ "force user" = "hana";
+ "force group" = "users";
+ };
+ };
+ };
+
+ services.samba-wsdd = {
+ enable = true;
+ openFirewall = true;
+ };
+
+ services.avahi = {
+ enable = true;
+ openFirewall = true;
+ nssmdns4 = true;
+ publish.enable = true;
+ publish.userServices = true;
+ };
+ }
+]
diff --git a/hosts/anemone/default.nix b/hosts/anemone/default.nix
new file mode 100644
index 0000000..841e909
--- /dev/null
+++ b/hosts/anemone/default.nix
@@ -0,0 +1,60 @@
+{ config, inputs, modules, overlays, pkgs, ... }: {
+ networking.hostName = "anemone";
+ system.stateVersion = "23.11";
+ time.timeZone = "Australia/Melbourne";
+
+ nixpkgs.overlays = [ inputs.neovim-nightly.overlays.default ];
+ age.secrets = {
+ wg_anemone.file = ../../secrets/wg_anemone.age;
+ passwd.file = ../../secrets/passwd.age;
+ };
+
+ imports = with modules.system; [
+ home-manager
+
+ audio
+ base
+ bluetooth
+ ccache
+ corectrl
+ docker
+ flatpak
+ greetd
+ gui
+ input
+ kernel
+ nix
+ packages
+ printing
+ security
+ snapper
+ tailscale
+ wireguard
+
+ ./filesystem.nix
+ ./kernel.nix
+ ./networking.nix
+
+ ../../users/rin
+
+ modules.services.syncthing
+ ];
+
+ me = {
+ environment = "laptop";
+ batteryDevice = "BATT";
+ kbBacklightDevice = "asus::kbd_backlight";
+ hasFingerprint = true;
+ hidpi = true;
+ };
+
+ programs.wireshark = {
+ enable = true;
+ package = pkgs.wireshark;
+ };
+
+ services.fprintd.enable = true;
+ services.tlp.enable = true;
+
+ programs.kdeconnect.enable = true;
+}
diff --git a/hosts/anemone/filesystem.nix b/hosts/anemone/filesystem.nix
new file mode 100644
index 0000000..1c984e8
--- /dev/null
+++ b/hosts/anemone/filesystem.nix
@@ -0,0 +1,36 @@
+{ config, lib, ... }:
+let
+ mkLabelMount = label: type: lazy: {
+ device = "/dev/disk/by-label/${label}";
+ fsType = type;
+ options = [ "defaults" "relatime" ] ++ lib.optionals lazy [ "nofail" ];
+ };
+ mkBtrfsMount = name: subvol: atime: mkLabelMount name "btrfs" false // {
+ options = [ "autodefrag" "compress=zstd:3" "defaults" "discard=async" "space_cache=v2" "ssd" "subvol=${subvol}" (if atime then "relatime" else "noatime") ];
+ };
+ submount = mkBtrfsMount "Anemone";
+in
+{
+ fileSystems = {
+ "/" = {
+ device = "rootfs";
+ fsType = "tmpfs";
+ options = [ "defaults" "size=8G" "mode=755" ];
+ };
+ "/boot" = mkLabelMount "SYSTEM" "vfat" true;
+
+ "/mnt/butter" = submount "/" true;
+ "/nix" = submount "/current/snow" false;
+ "/home" = submount "/current/home" true;
+ "/home/.snapshots" = submount "/snapshot/home" false;
+ "/root" = submount "/current/root" false;
+ "/var" = submount "/current/var" false;
+ "/persist" = {
+ depends = [ "/var" ];
+ device = "/var/persist";
+ fsType = "none";
+ options = [ "bind" ];
+ neededForBoot = true;
+ };
+ };
+}
diff --git a/hosts/anemone/kernel.nix b/hosts/anemone/kernel.nix
new file mode 100644
index 0000000..d959b37
--- /dev/null
+++ b/hosts/anemone/kernel.nix
@@ -0,0 +1,62 @@
+{ config, lib, pkgs, ... }: {
+ boot = {
+ consoleLogLevel = 0;
+ loader = {
+ efi.canTouchEfiVariables = true;
+ systemd-boot.enable = true;
+ };
+ initrd = {
+ availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
+ systemd.enable = true;
+ verbose = false;
+ };
+ kernelModules = [ "kvm-amd" ];
+ kernelPackages = lib.mkForce (pkgs.linuxPackagesFor pkgs.me.linux-lava);
+ kernelParams = [
+ "quiet"
+ "console=tty2"
+ "systemd.show_status=0"
+ "rd.systemd.show_status=0"
+ "rd.udev.log_level=3"
+ "udev.log_level=3"
+ "udev.log_priority=3"
+ ];
+ };
+
+ # swapDevices = [{
+ # device = "/persist/swapfile";
+ # size = 16 * 1024;
+ # }];
+ #
+ # systemd.sleep.extraConfig = ''
+ # HibernateMode=shutdown
+ # '';
+ /*
+ services.logind.lidSwitch = "suspend-then-hibernate";
+ systemd.sleep.extraConfig = ''
+ HibernateDelaySec=14400
+ SuspendEstimationSec=3600
+ HibernateOnACPower=true
+ '';
+ */
+
+ powerManagement.cpufreq.min = 400000;
+
+ hardware.cpu.amd.updateMicrocode = true;
+
+ hardware.firmware = let
+ fw = "${pkgs.linux-firmware}/lib/firmware/cirrus/";
+ in [(
+ pkgs.runCommandNoCC "cs35l41-10431683" { } ''
+ mkdir -p $out/lib/firmware/cirrus
+ cd $out/lib/firmware/cirrus
+
+ cp ${fw}/cs35l41-dsp1-spk-prot-10431e12-spkid0-l0.bin cs35l41-dsp1-spk-prot-10431683-spkid0-l0.bin
+ cp ${fw}/cs35l41-dsp1-spk-prot-10431e12-spkid0-l0.bin cs35l41-dsp1-spk-prot-10431683-spkid0-r0.bin
+ cp ${fw}/cs35l41-dsp1-spk-prot-10431e12-spkid0-l0.bin cs35l41-dsp1-spk-prot-10431683-spkid1-l0.bin
+ cp ${fw}/cs35l41-dsp1-spk-prot-10431e12-spkid0-l0.bin cs35l41-dsp1-spk-prot-10431683-spkid1-r0.bin
+
+ cp ${fw}/cs35l41-dsp1-spk-prot-10431e12.wmfw cs35l41-dsp1-spk-prot-10431683.wmfw
+ ''
+ )];
+}
diff --git a/hosts/anemone/networking.nix b/hosts/anemone/networking.nix
new file mode 100644
index 0000000..f5a4dc5
--- /dev/null
+++ b/hosts/anemone/networking.nix
@@ -0,0 +1,4 @@
+{ config, ... }: {
+ networking.wireless.iwd.enable = true;
+ environment.etc."NetworkManager/system-connections".source = "/persist/nm_system-connections";
+}
diff --git a/hosts/blossom/filesystem.nix b/hosts/blossom/filesystem.nix
deleted file mode 100644
index 96c57b7..0000000
--- a/hosts/blossom/filesystem.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ config, ... }:
-let
- mkMount = uuid: type: {
- device = "/dev/disk/by-uuid/${uuid}";
- fsType = type;
- options = [ "defaults" "relatime" ];
- };
- mkBtrfsMount = subvolid: atime: mkMount "cf0f4302-f006-46a5-afc7-ada04d17f6f2" "btrfs" // {
- options = [ "autodefrag" "compress=zstd:3" "defaults" "discard=async" "space_cache=v2" "ssd" "subvolid=${builtins.toString subvolid}" (if atime then "relatime" else "noatime") ];
- };
-in
-{
- fileSystems = {
- "/" = {
- device = "rootfs";
- fsType = "tmpfs";
- options = [ "defaults" "size=4G" "mode=755" ];
- };
- "/boot" = mkMount "186A-A42E" "vfat";
-
- "/mnt/butter" = mkBtrfsMount 5 true;
- "/nix" = mkBtrfsMount 257 false;
- "/home" = mkBtrfsMount 259 true;
- "/home/.snapshots" = mkBtrfsMount 262 false;
- "/root" = mkBtrfsMount 260 false;
- "/var" = mkBtrfsMount 258 false;
-
- # "/mnt/nfs" = {
- # device = "192.168.100.11:/srv/nfs";
- # fsType = "nfs";
- # options = [ "defaults" ];
- # };
- };
-}
diff --git a/hosts/blossom/kernel.nix b/hosts/blossom/kernel.nix
deleted file mode 100644
index 935d709..0000000
--- a/hosts/blossom/kernel.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ config, lib, pkgs, ... }: {
- boot = {
- loader = {
- efi.canTouchEfiVariables = true;
- grub = {
- enable = true;
- efiSupport = true;
- device = "nodev";
- useOSProber = lib.mkForce false;
- };
- };
- initrd.kernelModules = [ "i915" ];
- kernelParams = [
- "amdgpu.gpu_recovery=1"
- "amdgpu.si_support=1"
- "radeon.si_support=0"
- "intel_pstate=passive"
- "msr.allow_writes=on"
- ];
- kernelPackages = lib.mkForce (pkgs.linuxPackagesFor pkgs.me.linux-lava);
-
- extraModulePackages = [ config.boot.kernelPackages.v4l2loopback.out ];
- kernelModules = [ "v4l2loopback" ];
- };
-}
diff --git a/hosts/blossom/networking.nix b/hosts/blossom/networking.nix
deleted file mode 100644
index 2e0f6a6..0000000
--- a/hosts/blossom/networking.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ config, ... }: {
- environment.etc."wpa_supplicant.conf".source = config.age.secrets.wpa_conf.path;
- networking = {
- wireless = {
- enable = true;
- interfaces = [ "wlp3s0" ];
- };
-
- useDHCP = false;
- interfaces.eno1.useDHCP = false;
- interfaces.wlp3s0.useDHCP = false;
-
- interfaces.eno1.ipv4.addresses = [{
- address = "10.0.0.2";
- prefixLength = 24;
- }];
- interfaces.wlp3s0.ipv4.addresses = [{
- address = "192.168.100.13";
- prefixLength = 24;
- }];
- defaultGateway = "192.168.100.1";
- nameservers = [ "192.168.100.15" ];
-
- extraHosts = ''
- 192.168.100.12 strawberry
- 192.168.100.15 caramel
-
- 10.100.0.1 sugarcane
- '';
- };
-}
diff --git a/hosts/caramel/default.nix b/hosts/caramel/default.nix
deleted file mode 100644
index 1e3bd35..0000000
--- a/hosts/caramel/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ config, inputs, modules, overlays, pkgs, ... }: {
- networking.hostName = "caramel";
- system.stateVersion = "21.11";
- time.timeZone = "Asia/Phnom_Penh";
-
- age.secrets = {
- acme_dns.file = ../../secrets/acme_dns.age;
- passwd.file = ../../secrets/passwd.age;
- warden_admin.file = ../../secrets/warden_admin.age;
- wpa_conf.file = ../../secrets/wpa_conf.age;
- wg_caramel.file = ../../secrets/wg_caramel.age;
- };
- imports =
- (with modules.system; [
- inputs.home-manager-porcupine.nixosModule
-
- base
- home-manager
- input
- nix-porcupine
- security
- wireguard
-
- ./filesystem.nix
- ./kernel.nix
- ./networking.nix
- ./packages.nix
-
- ../../users/hana
- ]) ++
- (with modules.services; [
- nginx
- postgres
- synapse
- tmptsync
- unbound
- vaultwarden
- ]);
-}
diff --git a/hosts/caramel/filesystem.nix b/hosts/caramel/filesystem.nix
deleted file mode 100644
index c03acda..0000000
--- a/hosts/caramel/filesystem.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ config, ... }:
-let
- bind = src: {
- depends = [ "/persist" ];
- device = src;
- fsType = "none";
- neededForBoot = true;
- options = [ "bind" ];
- };
-in {
- fileSystems = {
- "/" = {
- device = "rootfs";
- fsType = "tmpfs";
- options = [ "defaults" "size=2G" "mode=755" ];
- };
-
- "/nix" = {
- device = "/dev/disk/by-label/NIXOS_SD";
- fsType = "ext4";
- options = [ "defaults" "noatime" ];
- };
-
- "/persist" = {
- device = "/dev/disk/by-label/PI_HDD";
- fsType = "ext4";
- options = [ "defaults" "relatime" ];
- neededForBoot = true;
- };
-
- "/var/persist" = bind "/persist";
- "/var/lib/acme" = bind "/persist/acme";
- "/var/log/journal" = bind "/persist/journal";
- "/boot" = (bind "/nix/persist/boot") // { depends = [ "/nix" ]; };
- };
-}
diff --git a/hosts/caramel/kernel.nix b/hosts/caramel/kernel.nix
deleted file mode 100644
index e621ed3..0000000
--- a/hosts/caramel/kernel.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ config, inputs, pkgs, ... }: {
- imports = [
- inputs.nixos-hardware.nixosModules.raspberry-pi-4
- ];
- hardware.raspberry-pi."4".fkms-3d.enable = true;
-
- boot.kernel.sysctl = {
- "kernel.core_pattern" = "|/bin/false";
- "kernel.sysrq" = 1;
- };
-}
diff --git a/hosts/caramel/networking.nix b/hosts/caramel/networking.nix
deleted file mode 100644
index 93059b2..0000000
--- a/hosts/caramel/networking.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ config, ... }: {
- environment.etc."wpa_supplicant.conf".source = config.age.secrets.wpa_conf.path;
- networking = {
- firewall.allowedTCPPorts = [ 80 443 ];
-
- wireless = {
- enable = true;
- interfaces = [ "wlan0" ];
- };
-
- useDHCP = false;
- interfaces.wlan0.useDHCP = false;
-
- interfaces.wlan0.ipv4.addresses = [{
- address = "192.168.100.15";
- prefixLength = 24;
- }];
- defaultGateway = "192.168.100.1";
- nameservers = [ "8.8.8.8" ];
-
- extraHosts = ''
- 192.168.100.12 strawberry
- 192.168.100.13 blossom
- '';
- };
-}
diff --git a/hosts/dandelion/default.nix b/hosts/dandelion/default.nix
new file mode 100644
index 0000000..f65dfd1
--- /dev/null
+++ b/hosts/dandelion/default.nix
@@ -0,0 +1,44 @@
+{ inputs, modules, modulesPath, ... }: {
+ networking.hostName = "dandelion";
+ system.stateVersion = "23.11";
+ time.timeZone = "Australia/Melbourne";
+
+ age.secrets = {
+ acme_dns.file = ../../secrets/acme_dns.age;
+ slskd_env.file = ../../secrets/slskd_env.age;
+ wg_dandelion.file = ../../secrets/wg_dandelion.age;
+ };
+
+ imports = with modules.system; [
+ (modulesPath + "/profiles/qemu-guest.nix")
+ home-manager
+
+ base
+ kernel
+ nix-stable
+ packages
+ security
+ tailscale
+ wireguard
+
+ modules.services.banksia
+ modules.services.nginx
+ modules.services.unbound
+ modules.services.website
+
+ inputs.c-amethyst.nixosModule
+ inputs.c-beryllium.nixosModule
+ inputs.c-citrine.nixosModule
+ inputs.c-diamond.nixosModule
+ inputs.c-fluorite.nixosModule
+
+ ./filesystem.nix
+ ./kernel.nix
+ ./networking.nix
+ ./nginx.nix
+
+ ../../users/hana
+ ];
+
+ me.environment = "headless";
+}
diff --git a/hosts/dandelion/filesystem.nix b/hosts/dandelion/filesystem.nix
new file mode 100644
index 0000000..861bc15
--- /dev/null
+++ b/hosts/dandelion/filesystem.nix
@@ -0,0 +1,34 @@
+{ ... }:
+let
+ bind = src: {
+ depends = [ "/nix" ];
+ device = src;
+ fsType = "none";
+ neededForBoot = true;
+ options = [ "bind" ];
+ };
+
+ mkLabelMount = label: type: {
+ device = "/dev/disk/by-label/${label}";
+ fsType = type;
+ options = [ "defaults" "relatime" ];
+ };
+ mkBtrfsMount = name: subvol: atime: mkLabelMount name "btrfs" // {
+ options = [ "autodefrag" "compress=zstd:3" "defaults" "discard=async" "space_cache=v2" "ssd" "subvol=${subvol}" (if atime then "relatime" else "noatime") ];
+ };
+ submount = mkBtrfsMount "DANDELION";
+in {
+ fileSystems = {
+ "/" = {
+ device = "rootfs";
+ fsType = "tmpfs";
+ options = [ "defaults" "size=6G" "mode=755" ];
+ };
+ "/boot" = mkLabelMount "UEFI" "vfat";
+
+ "/nix" = submount "/@/nix" false;
+ "/persist" = (submount "/@/persist" true) // { neededForBoot = true; };
+ "/persist/.snapshots" = submount "/snap/persist" false;
+ "/var/log/journal" = bind "/persist/journal";
+ };
+}
diff --git a/hosts/dandelion/kernel.nix b/hosts/dandelion/kernel.nix
new file mode 100644
index 0000000..7ea7d43
--- /dev/null
+++ b/hosts/dandelion/kernel.nix
@@ -0,0 +1,10 @@
+{ ... }: {
+ boot = {
+ loader = {
+ efi.canTouchEfiVariables = true;
+ systemd-boot.enable = true;
+ };
+ initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
+ initrd.kernelModules = [ "nvme" ];
+ };
+}
diff --git a/hosts/dandelion/networking.nix b/hosts/dandelion/networking.nix
new file mode 100644
index 0000000..322719e
--- /dev/null
+++ b/hosts/dandelion/networking.nix
@@ -0,0 +1,4 @@
+{ ... }: {
+ networking.useDHCP = true;
+ networking.interfaces.enp2s0.useDHCP = false;
+}
diff --git a/hosts/dandelion/nginx.nix b/hosts/dandelion/nginx.nix
new file mode 100644
index 0000000..c29de38
--- /dev/null
+++ b/hosts/dandelion/nginx.nix
@@ -0,0 +1,8 @@
+{ ... }: {
+ services.nginx.virtualHosts."muse.lava.moe" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ locations."/".return = "404";
+ locations."/share/".proxyPass = "http://[fd0d:2::5:2]:4533";
+ };
+}
diff --git a/hosts/sugarcane/packages.nix b/hosts/dandelion/packages.nix
similarity index 88%
rename from hosts/sugarcane/packages.nix
rename to hosts/dandelion/packages.nix
index e3e3f15..2d4bd30 100644
--- a/hosts/sugarcane/packages.nix
+++ b/hosts/dandelion/packages.nix
@@ -1,4 +1,4 @@
-{ lib, pkgs, ... }: {
+{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
git
htop
diff --git a/hosts/blossom/default.nix b/hosts/hyacinth/default.nix
similarity index 51%
rename from hosts/blossom/default.nix
rename to hosts/hyacinth/default.nix
index 2aac9fc..a32d4bd 100644
--- a/hosts/blossom/default.nix
+++ b/hosts/hyacinth/default.nix
@@ -1,35 +1,47 @@
{ config, inputs, modules, overlays, pkgs, ... }: {
- networking.hostName = "blossom";
+ networking.hostName = "hyacinth";
system.stateVersion = "21.11";
- time.timeZone = "Asia/Phnom_Penh";
+ time.timeZone = "Australia/Melbourne";
- nixpkgs.overlays = [ inputs.neovim-nightly.overlay ];
+ nixpkgs.overlays = [ inputs.neovim-nightly.overlays.default ];
age.secrets = {
passwd.file = ../../secrets/passwd.age;
- wg_blossom.file = ../../secrets/wg_blossom.age;
+ wg_hyacinth.file = ../../secrets/wg_hyacinth.age;
wpa_conf.file = ../../secrets/wpa_conf.age;
};
imports = with modules.system; [
- inputs.home-manager.nixosModule
home-manager
+ aagl
audio
base
+ bluetooth
+ ccache
+ corectrl
+ docker
+ flatpak
greetd
gui
input
kernel
nix
packages
+ printing
security
snapper
+ tailscale
wireguard
+ modules.services.syncthing
+
./filesystem.nix
./kernel.nix
./networking.nix
+ ./packages.nix
../../users/rin
];
-}
+ systemd.services.nix-daemon.environment.TMPDIR = "/nix/tmp";
+ me.hasBluetooth = true;
+}
diff --git a/hosts/hyacinth/filesystem.nix b/hosts/hyacinth/filesystem.nix
new file mode 100644
index 0000000..2757182
--- /dev/null
+++ b/hosts/hyacinth/filesystem.nix
@@ -0,0 +1,50 @@
+{ config, lib, ... }:
+let
+ mkLabelMount = label: type: {
+ device = "/dev/disk/by-label/${label}";
+ fsType = type;
+ options = [ "defaults" "relatime" ];
+ };
+ mkBtrfsMount = name: subvol: atime: mkLabelMount name "btrfs" // {
+ options = [ "autodefrag" "compress=zstd:3" "defaults" "discard=async" "space_cache=v2" "ssd" "subvol=${subvol}" (if atime then "relatime" else "noatime") ];
+ };
+ mkCakeMount = mkBtrfsMount "CAKE";
+in
+{
+ fileSystems = {
+ "/" = {
+ device = "rootfs";
+ fsType = "tmpfs";
+ options = [ "defaults" "size=24G" "mode=755" ];
+ };
+ "/boot" = mkLabelMount "CUP" "vfat";
+
+ "/mnt/butter" = mkCakeMount "/" true;
+ "/mnt/cream" = mkBtrfsMount "CREAM" "/" true;
+ "/mnt/cream/permanence/.snapshots" = mkBtrfsMount "CREAM" "/snapshot/permanence" false;
+ "/nix" = mkCakeMount "/current/snow" false;
+ "/home" = mkCakeMount "/current/home" true;
+ "/home/.snapshots" = mkCakeMount "/snapshot/home" false;
+ "/root" = mkCakeMount "/current/root" false;
+ "/var" = mkCakeMount "/current/var" false;
+ "/persist" = {
+ depends = [ "/var" ];
+ device = "/var/persist";
+ fsType = "none";
+ options = [ "bind" ];
+ neededForBoot = true;
+ };
+ };
+ services.snapper.configs.cream = {
+ FSTYPE = "btrfs";
+ SUBVOLUME = "/mnt/cream/permanence";
+ TIMELINE_CLEANUP = true;
+ TIMELINE_CREATE = true;
+ TIMELINE_MIN_AGE = "1800";
+ TIMELINE_LIMIT_HOURLY = "5";
+ TIMELINE_LIMIT_DAILY = "7";
+ TIMELINE_LIMIT_WEEKLY = "0";
+ TIMELINE_LIMIT_MONTHLY = "0";
+ TIMELINE_LIMIT_YEARLY = "0";
+ };
+}
diff --git a/hosts/hyacinth/kernel.nix b/hosts/hyacinth/kernel.nix
new file mode 100644
index 0000000..f410014
--- /dev/null
+++ b/hosts/hyacinth/kernel.nix
@@ -0,0 +1,20 @@
+{ config, lib, pkgs, ... }: {
+ boot = {
+ loader = {
+ efi.canTouchEfiVariables = true;
+ systemd-boot.enable = true;
+ };
+ initrd.availableKernelModules = [ "xhci_pci" "nvme" ];
+ initrd.kernelModules = [ "amdgpu" ];
+ kernelParams = [
+ "amdgpu.gpu_recovery=1"
+ "intel_pstate=passive"
+ "split_lock_detect=off"
+ ];
+ kernelPackages = lib.mkForce (pkgs.linuxPackagesFor pkgs.me.linux-lava);
+ };
+ hardware.amdgpu.overdrive = {
+ enable = true;
+ ppfeaturemask = "0xffffffff";
+ };
+}
diff --git a/hosts/hyacinth/networking.nix b/hosts/hyacinth/networking.nix
new file mode 100644
index 0000000..0b2eb03
--- /dev/null
+++ b/hosts/hyacinth/networking.nix
@@ -0,0 +1,19 @@
+{ config, ... }: {
+ environment.etc."wpa_supplicant.conf".source = config.age.secrets.wpa_conf.path;
+ networking = {
+ useDHCP = true;
+ interfaces.enp5s0.useDHCP = false;
+ interfaces.enp5s0.wakeOnLan.enable = true;
+
+ interfaces.enp5s0.ipv4.addresses = [{
+ address = "192.168.1.201";
+ prefixLength = 24;
+ }];
+ defaultGateway = "192.168.1.1";
+ nameservers = [ "8.8.8.8" "8.8.4.4" ];
+
+ extraHosts = ''
+ 10.100.0.1 sugarcane
+ '';
+ };
+}
diff --git a/hosts/hyacinth/packages.nix b/hosts/hyacinth/packages.nix
new file mode 100644
index 0000000..69f9ba1
--- /dev/null
+++ b/hosts/hyacinth/packages.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }: {
+ environment.systemPackages = with pkgs; [
+ discord
+ jetbrains.idea
+ texliveFull
+ ];
+}
diff --git a/hosts/sugarcane/default.nix b/hosts/sugarcane/default.nix
deleted file mode 100644
index b0fa44e..0000000
--- a/hosts/sugarcane/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, inputs, modules, modulesPath, overlays, pkgs, ... }: {
- networking.hostName = "sugarcane";
- system.stateVersion = "21.11";
- time.timeZone = "Asia/Singapore";
-
- age.secrets = {
- passwd.file = ../../secrets/passwd.age;
- wg_sugarcane.file = ../../secrets/wg_sugarcane.age;
- };
- imports = with modules.system; [
- (modulesPath + "/profiles/qemu-guest.nix")
- inputs.home-manager-porcupine.nixosModule
-
- base
- home-manager
- input
- nix-porcupine
- security
- wireguard
-
- ./filesystem.nix
- ./kernel.nix
- ./networking.nix
- ./packages.nix
-
- ../../users/hana
- ];
-}
diff --git a/hosts/sugarcane/filesystem.nix b/hosts/sugarcane/filesystem.nix
deleted file mode 100644
index c929023..0000000
--- a/hosts/sugarcane/filesystem.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ config, ... }:
-let
- bind = src: {
- depends = [ "/nix" ];
- device = src;
- fsType = "none";
- neededForBoot = true;
- options = [ "bind" ];
- };
-in {
- fileSystems = {
- "/" = {
- device = "rootfs";
- fsType = "tmpfs";
- options = [ "defaults" "size=1G" "mode=755" ];
- };
-
- "/nix" = {
- device = "/dev/disk/by-uuid/19d572a8-1cf6-4b9c-94c6-3ce6be54f719";
- fsType = "ext4";
- options = [ "defaults" "noatime" ];
- neededForBoot = true;
- };
-
- "/var/persist" = bind "/nix/persist";
- "/var/log/journal" = bind "/nix/persist/journal";
- "/boot" = bind "/nix/persist/boot";
- };
-}
diff --git a/hosts/sugarcane/kernel.nix b/hosts/sugarcane/kernel.nix
deleted file mode 100644
index 35c4452..0000000
--- a/hosts/sugarcane/kernel.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ config, inputs, pkgs, ... }: {
- boot = {
- loader = {
- systemd-boot.enable = false;
- efi.canTouchEfiVariables = true;
- grub = {
- enable = true;
- device = "/dev/sda";
- };
- };
- initrd.kernelModules = [ "nvme" ];
- kernel.sysctl = {
- "kernel.core_pattern" = "|/bin/false";
- "kernel.sysrq" = 1;
- };
- };
-}
diff --git a/hosts/sugarcane/networking.nix b/hosts/sugarcane/networking.nix
deleted file mode 100644
index 5218f0d..0000000
--- a/hosts/sugarcane/networking.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ config, ... }: {
- networking = {
- useDHCP = false;
- interfaces.ens3.useDHCP = true;
-
- extraHosts = ''
- 10.100.0.3 blossom
- 10.100.0.4 strawberry
- '';
- };
-}
diff --git a/modules/binds.nix b/modules/binds.nix
new file mode 100644
index 0000000..c9ffe18
--- /dev/null
+++ b/modules/binds.nix
@@ -0,0 +1,13 @@
+{ config, lib, ...}: {
+ imports = [ ./options.nix ];
+ fileSystems = lib.mapAttrs (dest: key: let
+ target = if (lib.strings.hasPrefix "/" key)
+ then key
+ else "/persist/binds/${key}";
+ in {
+ depends = [ "/persist" ];
+ device = target;
+ fsType = "none";
+ options = [ "bind" ];
+ }) config.me.binds;
+}
diff --git a/modules/default.nix b/modules/default.nix
index ed774ca..6775c55 100644
--- a/modules/default.nix
+++ b/modules/default.nix
@@ -14,52 +14,67 @@ let
}) paths
);
in {
+ binds = ./binds.nix;
+ options = ./options.nix;
services = mkAttrsFromPaths [
+ ./services/banksia.nix
+ ./services/jellyfin.nix
./services/nginx.nix
./services/postgres.nix
+ ./services/sonarr.nix
./services/synapse.nix
+ ./services/syncthing.nix
./services/tmptsync.nix
+ ./services/transmission.nix
./services/unbound.nix
./services/vaultwarden.nix
+ ./services/website.nix
];
system = mkAttrsFromPaths [
+ ./system/aagl.nix
./system/audio.nix
./system/base.nix
+ ./system/bluetooth.nix
+ ./system/ccache.nix
+ ./system/corectrl.nix
+ ./system/docker.nix
+ ./system/flatpak.nix
./system/greetd.nix
./system/gui.nix
./system/home-manager.nix
./system/input.nix
./system/kernel.nix
./system/nix.nix
- ./system/nix-porcupine.nix
+ ./system/nix-stable.nix
./system/packages.nix
+ ./system/printing.nix
./system/security.nix
./system/snapper.nix
- ./system/transmission.nix
+ ./system/tailscale.nix
+ ./system/virtualisation.nix
./system/wireguard.nix
];
user = mkAttrsFromPaths [
- ./user/bspwm.nix
+ ./user/catppuccin.nix
+ ./user/comma.nix
./user/direnv.nix
./user/dunst.nix
./user/eww.nix
./user/git.nix
./user/gpg.nix
+ ./user/hypridle.nix
+ ./user/hyprlock.nix
./user/kitty.nix
./user/mpv.nix
./user/neovim.nix
./user/neovim-minimal.nix
./user/npm.nix
- ./user/packages-rin.nix
- ./user/pass.nix
- ./user/picom.nix
- ./user/polybar.nix
+ ./user/obs.nix
./user/rofi.nix
./user/sessionVariables.nix
- ./user/sxhkd.nix
+ ./user/spicetify.nix
./user/theming.nix
./user/xdg.nix
- ./user/xorg.nix
./user/zsh.nix
];
}
diff --git a/modules/options.nix b/modules/options.nix
new file mode 100644
index 0000000..e861c12
--- /dev/null
+++ b/modules/options.nix
@@ -0,0 +1,53 @@
+{ config, lib, ... }:
+let
+ inherit (lib)
+ mkOption
+ types;
+in {
+ options.me = {
+ environment = mkOption {
+ type = types.enum [ "desktop" "laptop" "headless" ];
+ default = "desktop";
+ };
+
+ hasFingerprint = mkOption {
+ type = types.bool;
+ default = false;
+ };
+
+ gui = mkOption {
+ type = types.bool;
+ default = config.me.environment != "headless";
+ };
+
+ batteryDevice = mkOption {
+ type = with types; nullOr (uniq str);
+ default = null;
+ };
+
+ kbBacklightDevice = mkOption {
+ type = with types; nullOr (uniq str);
+ default = null;
+ };
+
+ hasBluetooth = mkOption {
+ type = types.bool;
+ default = config.me.environment == "laptop";
+ };
+
+ hasWifi = mkOption {
+ type = types.bool;
+ default = config.me.environment == "laptop";
+ };
+
+ hidpi = mkOption {
+ type = types.bool;
+ default = false;
+ };
+
+ binds = lib.mkOption {
+ type = with lib.types; attrsOf str;
+ default = {};
+ };
+ };
+}
diff --git a/modules/services/banksia.nix b/modules/services/banksia.nix
new file mode 100644
index 0000000..2ace618
--- /dev/null
+++ b/modules/services/banksia.nix
@@ -0,0 +1,11 @@
+# TODO ^^
+{ ... }: {
+ services.nginx.virtualHosts = {
+ "banksia.lava.moe" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ locations."/".return = "302 https://lab.lava.moe/cilly/Banksia";
+ locations."/api".proxyPass = "http://localhost:8080/";
+ };
+ };
+}
diff --git a/modules/services/jellyfin.nix b/modules/services/jellyfin.nix
new file mode 100644
index 0000000..4a52ed6
--- /dev/null
+++ b/modules/services/jellyfin.nix
@@ -0,0 +1,28 @@
+{ ... }:
+let
+ dir = "/persist/jellyfin";
+in
+{
+ fileSystems."/var/lib/jellyfin" = {
+ depends = [ "/persist" ];
+ device = dir;
+ fsType = "none";
+ options = [ "bind" ];
+ };
+ system.activationScripts."jellyfin-create-bind-mount" = {
+ deps = [ "users" "groups" ];
+ text = ''
+ mkdir -p ${dir}
+ chown jellyfin:jellyfin ${dir}
+ chmod 700 ${dir}
+ '';
+ };
+ systemd.tmpfiles.rules = [
+ "d /tmp/jelly-transcodes 700 jellyfin jellyfin"
+ "L+ /var/lib/jellyfin/transcodes - - - - /tmp/jelly-transcodes"
+ ];
+ services.jellyfin = {
+ enable = true;
+ openFirewall = true;
+ };
+}
diff --git a/modules/services/nginx.nix b/modules/services/nginx.nix
index 4b01c80..a02b7e9 100644
--- a/modules/services/nginx.nix
+++ b/modules/services/nginx.nix
@@ -1,17 +1,21 @@
-{ config, inputs, ... }: {
+{ config, ... }: {
+ networking.firewall.allowedTCPPorts = [ 80 443 ];
security.acme = {
acceptTerms = true;
- email = "me@lava.moe";
- certs."lava.moe" = {
+ defaults = {
+ email = "me@lava.moe";
group = "nginx";
- domain = "lava.moe";
+ dnsProvider = "cloudflare";
+ environmentFile = config.age.secrets."acme_dns".path;
+ };
+ certs."lava.moe" = {
extraDomainNames = [
"*.lava.moe"
"*.local.lava.moe"
];
- dnsProvider = "cloudflare";
- credentialsFile = config.age.secrets."acme_dns".path;
};
+ certs."cilly.moe" = {};
+ certs."cilly.dev" = {};
};
services.nginx = {
@@ -20,23 +24,5 @@
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
-
- virtualHosts = {
- "lava.moe" = {
- useACMEHost = "lava.moe";
- forceSSL = true;
- root = inputs.website.outPath;
- };
- "_" = {
- default = true;
- addSSL = true;
- # TODO generate this somewhere
- sslCertificate = "/persist/fakeCerts/fake.crt";
- sslCertificateKey = "/persist/fakeCerts/fake.key";
- extraConfig = ''
- return 444;
- '';
- };
- };
};
}
diff --git a/modules/services/postgres.nix b/modules/services/postgres.nix
index dc2f08e..bbbeaa1 100644
--- a/modules/services/postgres.nix
+++ b/modules/services/postgres.nix
@@ -1,4 +1,4 @@
-{ config, ... }:
+{ config, lib, pkgs, ... }:
let
dir = "/persist/postgresql/${config.services.postgresql.package.psqlSchema}";
uid = toString config.ids.uids.postgres;
@@ -8,5 +8,13 @@ in {
services.postgresql = {
enable = true;
dataDir = dir;
+ # TODO: broken :3
+ package = pkgs.postgresql_13;
+ authentication = lib.mkOverride 10 ''
+ #type database DBuser origin-address auth-method
+ local all all trust
+ host all all 127.0.0.1/32 trust
+ host all all ::1/128 trust
+ '';
};
}
diff --git a/modules/services/sonarr.nix b/modules/services/sonarr.nix
new file mode 100644
index 0000000..b64d5ef
--- /dev/null
+++ b/modules/services/sonarr.nix
@@ -0,0 +1,11 @@
+{ ... }:
+let
+ dir = "/persist/sonarr";
+in
+{
+ services.sonarr = {
+ enable = true;
+ dataDir = dir;
+ openFirewall = true;
+ };
+}
diff --git a/modules/services/syncthing.nix b/modules/services/syncthing.nix
new file mode 100644
index 0000000..db32371
--- /dev/null
+++ b/modules/services/syncthing.nix
@@ -0,0 +1,23 @@
+{ config, ... }:
+let
+ dir = "/persist/shared/.syncthing";
+ user = if config.me.gui then "rin" else "hana";
+ uid = toString config.users.users."${user}".uid;
+ gid = toString config.users.groups.users.gid;
+in
+{
+ systemd.tmpfiles.rules = [
+ "d ${dir}/config 700 ${uid} ${gid}"
+ "d ${dir}/data 700 ${uid} ${gid}"
+ ];
+ systemd.services.syncthing.environment.STNODEFAULTFOLDER = "true";
+ services.syncthing = {
+ enable = true;
+ openDefaultPorts = true;
+ user = user;
+ group = "users";
+ dataDir = "/persist/shared/.syncthing/data";
+ configDir = "/persist/shared/.syncthing/config";
+ guiAddress = if config.me.gui then "127.0.0.1:8384" else ":8384";
+ };
+}
diff --git a/modules/system/transmission.nix b/modules/services/transmission.nix
similarity index 66%
rename from modules/system/transmission.nix
rename to modules/services/transmission.nix
index 9c1d27c..7540d68 100644
--- a/modules/system/transmission.nix
+++ b/modules/services/transmission.nix
@@ -5,13 +5,8 @@
downloadDirPermissions = "775";
openFirewall = true;
settings = {
- alt-speed-down = 512;
- alt-speed-enabled = true;
- alt-speed-time-begin = 360;
- alt-speed-time-day = 127;
- alt-speed-time-enabled = true;
- alt-speed-time-end = 1380;
- alt-speed-up = 256;
+ download-dir = "/persist/transmission/Downloads";
+ incomplete-dir = "/persist/transmission/.incomplete";
ratio-limit-enabled = true;
rpc-bind-address = "0.0.0.0";
rpc-enabled = true;
diff --git a/modules/services/unbound.nix b/modules/services/unbound.nix
index a9cf3bc..8aae0fd 100644
--- a/modules/services/unbound.nix
+++ b/modules/services/unbound.nix
@@ -1,8 +1,17 @@
-{ inputs, ... }:
+{ inputs, pkgs, gcSecrets, ... }:
let
dir = "/persist/unbound";
+
+ converted = pkgs.runCommand "stevenblack-hosts-unbound" {} ''
+ echo "server:" > "$out"
+ grep '^0\.0\.0\.0' "${inputs.stevenblack-hosts}/hosts" | awk '{print "local-zone: \""$2"\" always_refuse"}' | tail -n +2 >> "$out"
+ '';
in {
- networking.firewall.interfaces.wlan0 = {
+ networking.firewall.interfaces."ve-+" = {
+ allowedUDPPorts = [ 53 853 ];
+ allowedTCPPorts = [ 53 853 ];
+ };
+ networking.firewall.interfaces.wg0 = {
allowedUDPPorts = [ 53 853 ];
allowedTCPPorts = [ 53 853 ];
};
@@ -16,17 +25,27 @@ in {
name = ".";
forward-tls-upstream = true;
forward-addr = [
+ "2606:4700:4700::1111@853#cloudflare-dns.com"
+ "2606:4700:4700::1001@853#cloudflare-dns.com"
+ "2001:4860:4860::8888@853#dns.google"
+ "2001:4860:4860::8844@853#dns.google"
"1.1.1.1@853#cloudflare-dns.com"
"1.0.0.1@853#cloudflare-dns.com"
+ "8.8.8.8@853#dns.google"
+ "8.8.4.4@853#dns.google"
];
}];
server = {
- interface = [ "0.0.0.0" ];
+ interface = [ "0.0.0.0" "::0" ];
access-control = [
"127.0.0.1/8 allow"
"10.0.0.0/8 allow"
+ "100.64.0.0/10 allow"
"192.168.100.0/24 allow"
+ "fd0d::/16 allow"
+ "fd7a:115c:a1e0::/48 allow"
+ "${gcSecrets.wireguard.ipv6Subnet}:/80 allow"
];
domain-insecure = [ "\"local.lava.moe\"" ];
local-zone = [ "\"warden.local.lava.moe.\" redirect" ];
@@ -35,7 +54,7 @@ in {
];
};
- include = "${inputs.hosts-blocklists}/unbound/unbound.blacklist.conf";
+ include = "${converted}";
};
};
diff --git a/modules/services/website.nix b/modules/services/website.nix
new file mode 100644
index 0000000..3fba609
--- /dev/null
+++ b/modules/services/website.nix
@@ -0,0 +1,43 @@
+{ inputs, pkgs, ... }: let
+ pastel = inputs.pastel.packages.${pkgs.system}.default;
+in {
+ services.nginx.virtualHosts = {
+ "cilly.moe" = {
+ useACMEHost = "cilly.moe";
+ forceSSL = true;
+ root = pastel.outPath;
+ };
+ "cilly.dev" = {
+ useACMEHost = "cilly.dev";
+ forceSSL = true;
+ root = pastel.outPath;
+ };
+ "lava.moe" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ root = inputs.website.outPath;
+ };
+ "cdn.lava.moe" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ extraConfig = ''
+ return 301 https://sh.lava.moe$request_uri;
+ '';
+ };
+ "sh.lava.moe" = {
+ useACMEHost = "lava.moe";
+ forceSSL = true;
+ root = "/persist/cdn";
+ };
+ "_" = {
+ default = true;
+ addSSL = true;
+ # TODO generate this somewhere
+ sslCertificate = "/persist/fakeCerts/fake.crt";
+ sslCertificateKey = "/persist/fakeCerts/fake.key";
+ extraConfig = ''
+ return 444;
+ '';
+ };
+ };
+}
diff --git a/modules/system/aagl.nix b/modules/system/aagl.nix
new file mode 100644
index 0000000..57826c4
--- /dev/null
+++ b/modules/system/aagl.nix
@@ -0,0 +1,6 @@
+{ inputs, ... }: {
+ imports = [ inputs.aagl.nixosModules.default ];
+ nix.settings = inputs.aagl.nixConfig;
+ programs.anime-game-launcher.enable = true;
+ programs.sleepy-launcher.enable = true;
+}
diff --git a/modules/system/audio.nix b/modules/system/audio.nix
index d908696..46d50c0 100644
--- a/modules/system/audio.nix
+++ b/modules/system/audio.nix
@@ -17,7 +17,6 @@ let
rate = toString int.rate;
};
in {
- sound.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
@@ -25,18 +24,32 @@ in {
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
+ };
+ services.pipewire.extraConfig.pipewire = {
+ "context.properties" = {
+ "default.clock.rate" = int.rate;
+ "default.clock.quantum" = int.quantum.def;
+ "default.clock.min-quantum" = int.quantum.min;
+ "default.clock.max-quantum" = int.quantum.max;
+ };
- config.pipewire = {
- "context.properties" = {
- "link.max-buffers" = 16;
- "default.clock.rate" = int.rate;
- "default.clock.quantum" = int.quantum.def;
- "default.clock.min-quantum" = int.quantum.min;
- "default.clock.max-quantum" = int.quantum.max;
- "core.daemon" = true;
- "core.name" = "pipewire-0";
- };
-
+ "context.modules" = [
+ {
+ name = "libpipewire-module-rtkit";
+ args = {
+ "nice.level" = -15;
+ "rt.prio" = 88;
+ "rt.time.soft" = 200000;
+ "rt.time.hard" = 200000;
+ };
+ }
+ ];
+ "stream.properties" = {
+ "node.latency" = "${str.quantum.min}/${str.rate}";
+ "resample.quality" = 1;
+ };
+ };
+ services.pipewire.extraConfig.pipewire-pulse = {
"context.modules" = [
{
name = "libpipewire-module-rtkit";
@@ -46,54 +59,23 @@ in {
"rt.time.soft" = 200000;
"rt.time.hard" = 200000;
};
- flags = [ "ifexists" "nofail" ];
}
- { name = "libpipewire-module-protocol-native"; }
- { name = "libpipewire-module-profiler"; }
- { name = "libpipewire-module-metadata"; }
- { name = "libpipewire-module-spa-device-factory"; }
- { name = "libpipewire-module-spa-node-factory"; }
- { name = "libpipewire-module-client-node"; }
- { name = "libpipewire-module-client-device"; }
- {
- name = "libpipewire-module-portal";
- flags = [ "ifexists" "nofail" ];
- }
- { name = "libpipewire-module-access"; args = {}; }
- { name = "libpipewire-module-adapter"; }
- { name = "libpipewire-module-link-factory"; }
- { name = "libpipewire-module-session-manager"; }
];
- "stream.properties" = {
- "node.latency" = "${str.quantum.min}/${str.rate}";
- "resample.quality" = 1;
+ "pulse.properties" = {
+ "pulse.min.req" = "${str.quantum.min}/${str.rate}";
+ "pulse.default.req" = "${str.quantum.def}/${str.rate}";
+ "pulse.max.req" = "${str.quantum.max}/${str.rate}";
+ "pulse.min.quantum" = "${str.quantum.min}/${str.rate}";
+ "pulse.max.quantum" = "${str.quantum.max}/${str.rate}";
};
- };
- config.pipewire-pulse = {
- "context.modules" = [
+ "pulse.rules" = [
{
- name = "libpipewire-module-rtkit";
- args = {
- "nice.level" = -15;
- "rt.prio" = 88;
- "rt.time.soft" = 200000;
- "rt.time.hard" = 200000;
- };
- flags = [ "ifexists" "nofail" ];
- }
- { name = "libpipewire-module-protocol-native"; }
- { name = "libpipewire-module-client-node"; }
- { name = "libpipewire-module-adapter"; }
- { name = "libpipewire-module-metadata"; }
- {
- name = "libpipewire-module-protocol-pulse";
- args = {
- "pulse.min.req" = "${str.quantum.min}/${str.rate}";
- "pulse.default.req" = "${str.quantum.def}/${str.rate}";
- "pulse.max.req" = "${str.quantum.max}/${str.rate}";
- "pulse.min.quantum" = "${str.quantum.min}/${str.rate}";
- "pulse.max.quantum" = "${str.quantum.max}/${str.rate}";
- "server.address" = [ "unix:native" ];
+ # Discord notification sounds fix
+ matches = [ { "application.process.binary" = ".DiscordCanary-wrapped"; } ];
+ actions = {
+ update-props = {
+ "pulse.min.quantum" = "1024/48000";
+ };
};
}
];
@@ -101,7 +83,6 @@ in {
"node.latency" = "${str.quantum.min}/${str.rate}";
"resample.quality" = 1;
};
- };
};
}
diff --git a/modules/system/base.nix b/modules/system/base.nix
index af1106a..c45eb99 100644
--- a/modules/system/base.nix
+++ b/modules/system/base.nix
@@ -1,14 +1,18 @@
-{ config, enableGUI, inputs, modules, overlays, ... }: {
+{ config, inputs, modules, ... }: {
+ imports = [ modules.binds modules.options ];
+
environment.etc = {
- "machine-id".source = "/var/persist/machine-id";
- "ssh/ssh_host_rsa_key".source = "/var/persist/ssh_host_rsa_key";
- "ssh/ssh_host_rsa_key.pub".source = "/var/persist/ssh_host_rsa_key.pub";
- "ssh/ssh_host_ed25519_key".source = "/var/persist/ssh_host_ed25519_key";
- "ssh/ssh_host_ed25519_key.pub".source = "/var/persist/ssh_host_ed25519_key.pub";
+ "machine-id".source = "/persist/machine-id";
+ "ssh/ssh_host_rsa_key".source = "/persist/ssh_host_rsa_key";
+ "ssh/ssh_host_rsa_key.pub".source = "/persist/ssh_host_rsa_key.pub";
+ "ssh/ssh_host_ed25519_key".source = "/persist/ssh_host_ed25519_key";
+ "ssh/ssh_host_ed25519_key.pub".source = "/persist/ssh_host_ed25519_key.pub";
};
environment.pathsToLink = [ "/share/zsh" ];
- i18n.defaultLocale = "en_GB.UTF-8";
+ i18n.defaultLocale = "en_AU.UTF-8";
+ i18n.extraLocales = [ "en_GB.UTF-8/UTF-8" ];
+
users.mutableUsers = false;
system = {
@@ -19,6 +23,5 @@
};
};
nix.registry.config.flake = inputs.self;
- nix.registry.nixpkgs.flake = inputs.nixpkgs;
nix.registry.shells.flake = inputs.self;
}
diff --git a/modules/system/bluetooth.nix b/modules/system/bluetooth.nix
new file mode 100644
index 0000000..1e2a72e
--- /dev/null
+++ b/modules/system/bluetooth.nix
@@ -0,0 +1,6 @@
+{ ... }: {
+ hardware.bluetooth = {
+ enable = true;
+ powerOnBoot = true;
+ };
+}
diff --git a/modules/system/ccache.nix b/modules/system/ccache.nix
new file mode 100644
index 0000000..b9e0847
--- /dev/null
+++ b/modules/system/ccache.nix
@@ -0,0 +1,3 @@
+{ config, ... }: {
+ programs.ccache.enable = true;
+}
diff --git a/modules/system/corectrl.nix b/modules/system/corectrl.nix
new file mode 100644
index 0000000..6f6ca01
--- /dev/null
+++ b/modules/system/corectrl.nix
@@ -0,0 +1,5 @@
+{ ... }: {
+ programs.corectrl = {
+ enable = true;
+ };
+}
diff --git a/modules/system/docker.nix b/modules/system/docker.nix
new file mode 100644
index 0000000..1ebd190
--- /dev/null
+++ b/modules/system/docker.nix
@@ -0,0 +1,13 @@
+{ pkgs, ... }: {
+ virtualisation.docker = {
+ enable = true;
+ storageDriver = "btrfs";
+ # rootless = {
+ # enable = true;
+ # setSocketVariable = true;
+ # };
+ };
+ environment.systemPackages = [
+ pkgs.docker-compose
+ ];
+}
diff --git a/modules/system/flatpak.nix b/modules/system/flatpak.nix
new file mode 100644
index 0000000..fbb80bb
--- /dev/null
+++ b/modules/system/flatpak.nix
@@ -0,0 +1,8 @@
+{ pkgs, ... }: {
+ services.flatpak.enable = true;
+ xdg.portal = {
+ enable = true;
+ extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
+ config.common.default = "*";
+ };
+}
diff --git a/modules/system/greetd.nix b/modules/system/greetd.nix
index de3b6cc..f220847 100644
--- a/modules/system/greetd.nix
+++ b/modules/system/greetd.nix
@@ -1,11 +1,18 @@
-{ pkgs, lib, ... }: {
+{ pkgs, ... }: {
services.greetd = {
enable = true;
settings = {
default_session = {
- command = "${pkgs.greetd.tuigreet}/bin/tuigreet --remember --asterisks --time --cmd 'zsh -c \"source $HOME/.config/zsh/.zshrc && startx\"'";
+ command = "${pkgs.tuigreet}/bin/tuigreet --remember --asterisks --time --cmd 'zsh -c \"source $HOME/.config/zsh/.zshrc && Hyprland > $XDG_RUNTIME_DIR/Hyprland.out\"'";
user = "greeter";
};
+
+ initial_session = {
+ command = "${pkgs.writeShellScript "launch.sh" ''
+ zsh -c "source $HOME/.config/zsh/.zshrc && Hyprland > \"$XDG_RUNTIME_DIR/Hyprland.out\""
+ ''}";
+ user = "rin";
+ };
};
};
}
diff --git a/modules/system/gui.nix b/modules/system/gui.nix
index e9c81de..7028dac 100644
--- a/modules/system/gui.nix
+++ b/modules/system/gui.nix
@@ -1,6 +1,6 @@
{ config, lib, pkgs, ... }: {
fonts = {
- enableDefaultFonts = true;
+ enableDefaultPackages = true;
fontconfig = {
defaultFonts = {
serif = [ "NotoSerif" ];
@@ -8,15 +8,13 @@
monospace = [ "CascadiaCode" ];
};
};
- fonts = with pkgs; [
- cascadia-code
- font-awesome
- font-awesome_4
- hanazono
+ packages = with pkgs; [
+ material-symbols
material-icons
+ cascadia-code
+ hanazono
noto-fonts
- noto-fonts-cjk
- noto-fonts-extra
+ noto-fonts-cjk-sans
open-sans
twemoji-color-font
unifont
@@ -24,11 +22,10 @@
};
services.xserver = {
enable = true;
- autorun = false;
- displayManager = {
- lightdm.enable = lib.mkForce false;
- startx.enable = true;
- };
+ displayManager.lightdm.enable = lib.mkForce false;
desktopManager.xterm.enable = false;
};
+
+ programs.hyprland.enable = true;
+ security.pam.services.hyprlock = {};
}
diff --git a/modules/system/home-manager.nix b/modules/system/home-manager.nix
index e496ac0..7d0f19d 100644
--- a/modules/system/home-manager.nix
+++ b/modules/system/home-manager.nix
@@ -1,12 +1,19 @@
-{ config, enableGUI, inputs, modules, ... }: {
+{ config, inputs, modules, ... }: {
+ imports = [
+ inputs.home-manager.nixosModules.home-manager
+ ];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
- inherit enableGUI inputs modules;
+ inherit inputs modules;
sysConfig = config;
};
- # uncomment to prevent nmd IFD
- # sharedModules = [ { manual.manpages.enable = false; } ];
+ sharedModules = [
+ {
+ imports = [ modules.options ];
+ config.me = config.me;
+ }
+ ];
};
}
diff --git a/modules/system/input.nix b/modules/system/input.nix
index 41c7ba0..a0bf2ff 100644
--- a/modules/system/input.nix
+++ b/modules/system/input.nix
@@ -1,19 +1,24 @@
-{ config, lib, pkgs, ... }: {
+{ ... }: {
services.xserver = {
displayManager = {
xserverArgs = [
- "-ardelay 250"
+ "-ardelay 150"
"-arinterval 15"
];
};
- libinput = {
- enable = true;
- mouse = {
- accelSpeed = "0";
- accelProfile = "flat";
+ };
+ services.keyd = {
+ enable = true;
+ keyboards = {
+ default = {
+ ids = [ "*" ];
+ settings = {
+ main = {
+ capslock = "esc";
+ esc = "capslock";
+ };
+ };
};
};
- xkbOptions = "caps:escape";
};
- console.useXkbConfig = true;
}
diff --git a/modules/system/kernel.nix b/modules/system/kernel.nix
index e12c37c..c0a1bcf 100644
--- a/modules/system/kernel.nix
+++ b/modules/system/kernel.nix
@@ -9,9 +9,10 @@
"kernel.core_pattern" = "|/bin/false";
"kernel.sysrq" = 1;
};
- loader.grub.useOSProber = true;
};
hardware.enableRedistributableFirmware = true;
- powerManagement.cpuFreqGovernor = "ondemand";
- zramSwap.enable = true;
+ zramSwap = {
+ enable = true;
+ priority = 100;
+ };
}
diff --git a/modules/system/nix-porcupine.nix b/modules/system/nix-porcupine.nix
deleted file mode 100644
index cb96b40..0000000
--- a/modules/system/nix-porcupine.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ config, lib, pkgs, ... }: {
- nix = rec {
- package = pkgs.nix_2_4;
- binaryCaches = [
- "https://cache.nixos.org?priority=10"
- "https://lava.cachix.org"
- ];
- binaryCachePublicKeys = [
- "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
- "lava.cachix.org-1:8lTWI/3IKWHByzzYHZySunMPYs2eAJw2duL+uLZkSy0="
- ];
- trustedBinaryCaches = binaryCaches;
-
- extraOptions = ''
- experimental-features = nix-command flakes
- '';
- };
- nixpkgs.config.allowUnfree = true;
-}
diff --git a/modules/system/nix-stable.nix b/modules/system/nix-stable.nix
new file mode 100644
index 0000000..1884c04
--- /dev/null
+++ b/modules/system/nix-stable.nix
@@ -0,0 +1,23 @@
+{ config, lib, pkgs, ... }: {
+ nix = {
+ package = pkgs.nixVersions.latest;
+
+ settings = rec {
+ substituters = [
+ "https://cache.nixos.org?priority=10"
+ "https://lava.cachix.org"
+ ];
+ trusted-public-keys = [
+ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
+ "lava.cachix.org-1:8lTWI/3IKWHByzzYHZySunMPYs2eAJw2duL+uLZkSy0="
+ ];
+ trusted-substituters = substituters;
+ };
+
+ extraOptions = ''
+ experimental-features = nix-command flakes
+ '';
+ };
+ nixpkgs.config.allowUnfree = true;
+ programs.nh.enable = true;
+}
diff --git a/modules/system/nix.nix b/modules/system/nix.nix
index 3152bb9..eb14f73 100644
--- a/modules/system/nix.nix
+++ b/modules/system/nix.nix
@@ -1,8 +1,10 @@
-{ config, lib, pkgs, ... }: {
+{ config, inputs, pkgs, ... }: {
nix = {
- package = pkgs.nixUnstable;
+ nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
+ package = pkgs.nixVersions.latest;
settings = rec {
+ extra-sandbox-paths = [ config.programs.ccache.cacheDir ];
substituters = [
"https://cache.nixos.org?priority=10"
"https://lava.cachix.org"
@@ -14,6 +16,7 @@
"nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="
];
trusted-substituters = substituters;
+ trusted-users = [ "root" "rin" ];
};
extraOptions = ''
@@ -21,4 +24,5 @@
'';
};
nixpkgs.config.allowUnfree = true;
+ programs.nh.enable = true;
}
diff --git a/modules/system/packages-gui.nix b/modules/system/packages-gui.nix
new file mode 100644
index 0000000..d853c40
--- /dev/null
+++ b/modules/system/packages-gui.nix
@@ -0,0 +1,26 @@
+{ config, lib, pkgs, ... }: {
+ config = lib.mkIf config.me.gui {
+ environment.systemPackages = with pkgs; [
+ android-tools
+ gparted
+ nautilus
+ ];
+ hardware.graphics.extraPackages = with pkgs; [
+ intel-vaapi-driver
+ libva-vdpau-driver
+ libvdpau-va-gl
+ ];
+ hardware.opentabletdriver.enable = true;
+ hardware.keyboard.qmk.enable = true;
+ programs.steam = {
+ enable = true;
+ package = pkgs.steam.override {
+ extraPkgs = pkgs: with pkgs; [
+ gsettings-desktop-schemas
+ ];
+ };
+ };
+ services.dbus.packages = [ pkgs.dconf pkgs.gcr ];
+ services.gnome.sushi.enable = true;
+ };
+}
diff --git a/modules/system/packages.nix b/modules/system/packages.nix
index 0f65df4..d4e2e3c 100644
--- a/modules/system/packages.nix
+++ b/modules/system/packages.nix
@@ -1,9 +1,14 @@
-{ config, enableGUI, lib, pkgs, ... }: {
+{ pkgs, ... }: {
+ imports = [ ./packages-gui.nix ];
environment.systemPackages = with pkgs; [
+ # ecryptfs
efibootmgr
+ fd
git
+ git-crypt
htop
jq
+ kitty.terminfo
libarchive
lf
msr-tools
@@ -11,28 +16,10 @@
neovim
nfs-utils
ntfs3g
- sshfs
+ ripgrep
rsync
+ sshfs
wget
- ] ++ lib.optionals enableGUI [
- gparted
- gnome3.nautilus
];
environment.variables.EDITOR = "nvim";
- programs.adb.enable = true;
}
-// (if !enableGUI then {} else {
- hardware.opengl.extraPackages = with pkgs; [
- vaapiIntel
- vaapiVdpau
- libvdpau-va-gl
- intel-ocl
- rocm-opencl-icd
- rocm-opencl-runtime
- ];
- programs.light.enable = true;
- hardware.opentabletdriver.enable = true;
- programs.steam.enable = true;
- services.dbus.packages = [ pkgs.dconf pkgs.gcr ];
- services.gnome.sushi.enable = true;
-})
diff --git a/modules/system/printing.nix b/modules/system/printing.nix
new file mode 100644
index 0000000..f7ccb20
--- /dev/null
+++ b/modules/system/printing.nix
@@ -0,0 +1,9 @@
+{ pkgs, ... }: {
+ services.printing = {
+ enable = true;
+ drivers = with pkgs; [
+ epson-escpr
+ #me.epson-201112j
+ ];
+ };
+}
diff --git a/modules/system/security.nix b/modules/system/security.nix
index eeedda7..f1f087b 100644
--- a/modules/system/security.nix
+++ b/modules/system/security.nix
@@ -1,26 +1,39 @@
-{ config, pkgs, ... }: {
- networking.firewall = {
+{ config, lib, pkgs, ... }: {
+ networking.firewall =
+ let
+ iptables = "${pkgs.iptables}/bin/iptables";
+ genCmds = type: ''
+ ${iptables} -${type} nixos-fw -p tcp --source 192.168.0.0/16 -j nixos-fw-accept ${if type == "D" then " || true" else ""}
+ ${iptables} -${type} nixos-fw -p udp --source 192.168.0.0/16 -j nixos-fw-accept ${if type == "D" then " || true" else ""}
+ '';
+ in {
enable = true;
allowedUDPPortRanges = [ { from = 20000; to = 20100; } ];
allowedTCPPortRanges = [ { from = 20000; to = 20100; } ];
trustedInterfaces = [ "wg0" ];
+ logRefusedConnections = false;
+
+ extraCommands = genCmds "I";
+ extraStopCommands = genCmds "D";
};
services.openssh = {
enable = true;
- permitRootLogin = "no";
- passwordAuthentication = false;
- forwardX11 = true;
+ settings = {
+ PermitRootLogin = "no";
+ PasswordAuthentication = false;
+ X11Forwarding = true;
+ };
hostKeys = [
{
bits = 4096;
- path = "/var/persist/ssh_host_rsa_key";
+ path = "/persist/ssh_host_rsa_key";
rounds = 100;
type = "rsa";
}
{
- path = "/var/persist/ssh_host_ed25519_key";
+ path = "/persist/ssh_host_ed25519_key";
rounds = 100;
type = "ed25519";
}
@@ -40,5 +53,33 @@
}
];
};
+ pam = lib.mkIf (config.me.environment != "headless") {
+ u2f = {
+ enable = true;
+ settings = {
+ cue = true;
+ pinverification = 1;
+ };
+ };
+ services.doas.rules.auth = {
+ u2f.settings.pinverification = lib.mkForce 0;
+ u2f_int = lib.mkMerge [
+ {
+ enable = true;
+ order = config.security.pam.services.doas.rules.auth.u2f.order + 1;
+ control = "sufficient";
+ modulePath = "${pkgs.pam_u2f}/lib/security/pam_u2f.so";
+ inherit (config.security.pam.u2f) settings;
+ }
+ {
+ settings = lib.mkForce {
+ interactive = true;
+ pinverification = 0;
+ userpresence = 0;
+ };
+ }
+ ];
+ };
+ };
};
}
diff --git a/modules/system/snapper.nix b/modules/system/snapper.nix
index 6883355..60cf41e 100644
--- a/modules/system/snapper.nix
+++ b/modules/system/snapper.nix
@@ -2,18 +2,16 @@
services.snapper = {
cleanupInterval = "1h";
configs.home = {
- fstype = "btrfs";
- subvolume = "/home";
- extraConfig = lib.concatStringsSep "\n" (lib.mapAttrsToList (k: v: "${k}=${v}") {
- TIMELINE_CLEANUP = "yes";
- TIMELINE_CREATE = "yes";
- TIMELINE_MIN_AGE = "1800";
- TIMELINE_LIMIT_HOURLY = "5";
- TIMELINE_LIMIT_DAILY = "7";
- TIMELINE_LIMIT_WEEKLY = "0";
- TIMELINE_LIMIT_MONTHLY = "0";
- TIMELINE_LIMIT_YEARLY = "0";
- });
+ FSTYPE = "btrfs";
+ SUBVOLUME = "/home";
+ TIMELINE_CLEANUP = true;
+ TIMELINE_CREATE = true;
+ TIMELINE_MIN_AGE = "1800";
+ TIMELINE_LIMIT_HOURLY = "5";
+ TIMELINE_LIMIT_DAILY = "7";
+ TIMELINE_LIMIT_WEEKLY = "0";
+ TIMELINE_LIMIT_MONTHLY = "0";
+ TIMELINE_LIMIT_YEARLY = "0";
};
};
}
diff --git a/modules/system/tailscale.nix b/modules/system/tailscale.nix
new file mode 100644
index 0000000..5e3e044
--- /dev/null
+++ b/modules/system/tailscale.nix
@@ -0,0 +1,13 @@
+{ config, lib, ... }: {
+ age.secrets.tailscale_auth.file = ../../secrets/tailscale_auth.age;
+ me.binds."/var/lib/tailscale" = "tailscale";
+ networking.firewall.trustedInterfaces = [ "tailscale0" ];
+ networking.firewall.allowedUDPPorts = lib.mkIf (config.me.environment == "headless") [ 123 ];
+
+ services.tailscale = {
+ enable = true;
+ authKeyFile = config.age.secrets.tailscale_auth.path;
+ openFirewall = true;
+ useRoutingFeatures = if config.me.environment == "headless" then "both" else "client";
+ };
+}
diff --git a/modules/system/virtualisation.nix b/modules/system/virtualisation.nix
new file mode 100644
index 0000000..b575f05
--- /dev/null
+++ b/modules/system/virtualisation.nix
@@ -0,0 +1,9 @@
+{ pkgs, ... }: {
+ virtualisation = {
+ spiceUSBRedirection.enable = true;
+ libvirtd = {
+ enable = true;
+ qemu.package = pkgs.qemu_kvm.override { smbdSupport = true; };
+ };
+ };
+}
diff --git a/modules/system/wireguard.nix b/modules/system/wireguard.nix
index e7d4234..71f85ad 100644
--- a/modules/system/wireguard.nix
+++ b/modules/system/wireguard.nix
@@ -1,13 +1,11 @@
-{ config, lib, pkgs, ... }:
+{ config, lib, pkgs, gcSecrets, ... }:
let
- port = 51820;
- serverName = "sugarcane";
- serverInterface = "ens3";
- serverIp = "51.79.240.130";
+ port = 51801;
+ serverName = "dandelion";
+ serverInterface = "enp0s6";
+ serverIp = gcSecrets.wireguard.gateway;
forwarding = {
- "80" = [ "10.100.0.2" "80" ];
- "443" = [ "10.100.0.2" "443" ];
"22727" = [ "10.100.0.3" "7777" ];
};
@@ -20,48 +18,61 @@ let
in ''
${pkgs.iptables}/bin/iptables -${type} PREROUTING -t nat -i ${serverInterface} -p tcp --dport ${sport} -j DNAT --to ${dest}:${dport}
${pkgs.iptables}/bin/iptables -${type} FORWARD -p tcp -d ${dest} --dport ${dport} -j ACCEPT
+ ${pkgs.iptables}/bin/iptables -${type} PREROUTING -t nat -i ${serverInterface} -p udp --dport ${sport} -j DNAT --to ${dest}:${dport}
+ ${pkgs.iptables}/bin/iptables -${type} FORWARD -p udp -d ${dest} --dport ${dport} -j ACCEPT
'') forwarding
);
- routeBypass = {
- caramel = {
- gateway = "192.168.100.1";
- interface = "wlan0";
- routes = [
- serverIp
- ];
- };
- blossom = {
- gateway = "192.168.100.1";
- interface = "wlp3s0";
- routes = [
- serverIp
- ];
- };
- };
-
clients = {
- caramel = {
- publicKey = "VDqcpS0lJzFgwikj61MJ1xc9P8Cuq0NXa+Hc+etn2iA=";
- allowedIPs = [ "10.100.0.2/32" ];
- };
- blossom = {
+ hyacinth = {
publicKey = "6nVhazYdmC15A/nke9VrqIg3sOBVOmqj4GEsyBq7MVo=";
- allowedIPs = [ "10.100.0.3/32" ];
+ allowedIPs = [ "10.100.0.3/32" "${gcSecrets.wireguard.ipv6Subnet}:3" "fd0d::3" ];
+ interfaces = {
+ wg0 = { peers = [ server6OnlyPeer ]; };
+ wg1 = { peers = [ serverPeer ]; autostart = false; };
+ wg2 = { peers = [ serverLocalOnlyPeer ]; autostart = false; };
+ };
};
- strawberry = {
- publicKey = "Fkcp/VSN4Dkhly8V4hskF4lnDviA7VZHCnWf7OliFCg=";
- allowedIPs = [ "10.100.0.4/32" ];
+ anemone = {
+ publicKey = "px5+JNdAmqBvUC++DhiJrUBRAr+BYP6iYVt4sbhPTWY=";
+ allowedIPs = [ "10.100.0.4/32" "${gcSecrets.wireguard.ipv6Subnet}:4" "fd0d::4" ];
+ interfaces = {
+ wg0 = { peers = [ server6OnlyPeer ]; };
+ wg1 = { peers = [ serverPeer ]; autostart = false; };
+ wg2 = { peers = [ serverLocalOnlyPeer ]; autostart = false; };
+ };
+ };
+ hibiscus = {
+ publicKey = "vQ5a2KMrwi7RCRsD0yvog+n35vQYFuvwiPn+W4lbRBw=";
+ allowedIPs = [ "10.100.0.5/32" "${gcSecrets.wireguard.ipv6Subnet}:5" "fd0d::5" ];
+ interfaces = {
+ wg0 = { peers = [ server6OnlyPeer ]; };
+ wg1 = { peers = [ serverPeer ]; autostart = false; };
+ wg2 = { peers = [ serverLocalOnlyPeer ]; autostart = false; };
+ };
+ };
+ hazel = {
+ publicKey = "0zruTndObzHo+b1rbOuTsxCU97epygZycxXS/lgUHUc=";
+ allowedIPs = [ "10.100.0.21/32" "${gcSecrets.wireguard.ipv6Subnet}:21" "fd0d::21" ];
+ interfaces = {
+ wg0 = {
+ dns = [ "::1" "127.0.0.1" ];
+ peers = [ serverLocalOnlyPeer ];
+ };
+ };
};
};
- clientPeers = builtins.attrValues clients;
- serverPeer = {
+ clientPeers = builtins.map (client: builtins.removeAttrs client [ "interfaces" ]) (builtins.attrValues clients);
+ serverPeerWith = ips: {
publicKey = "3ugIk2tQZXjAH9/95s63ld2WNUHQrd4Mz5jzbln6oj0=";
- allowedIPs = [ "0.0.0.0/0" ];
+ allowedIPs = ips;
endpoint = "${serverIp}:${toString port}";
persistentKeepalive = 25;
};
+ serverPeer = serverPeerWith [ "0.0.0.0/0" "::/0" ];
+ server6OnlyPeer = serverPeerWith [ "10.100.0.0/24" "::/0" ];
+ serverLocalOnlyPeer = serverPeerWith [ "10.100.0.0/24" "fd0d::/16" ];
serverConfig = {
nat = {
@@ -75,7 +86,7 @@ let
};
wireguard.interfaces.wg0 = {
- ips = [ "10.100.0.1/24" ];
+ ips = [ "10.100.0.1/24" "${gcSecrets.wireguard.ipv6Subnet}:1" "fd0d::1" ];
listenPort = port;
postSetup = ''
@@ -93,33 +104,24 @@ let
};
clientConfig = {
- wireguard.interfaces.wg0 =
+ wg-quick.interfaces =
let
client = clients."${config.networking.hostName}";
- routes = routeBypass."${config.networking.hostName}";
- mapRoutes = type: lib.concatMapStringsSep "\n" (r: "${pkgs.iproute2}/bin/ip route ${type} ${r} via ${routes.gateway} dev ${routes.interface}") routes.routes;
- in {
- ips = client.allowedIPs;
- listenPort = port;
-
- postSetup = ''
- ${mapRoutes "add"}
- ${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.100.0.0/24 -o ${serverInterface} -j MASQUERADE
- '';
-
- postShutdown = ''
- ${mapRoutes "del"}
- ${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.100.0.0/24 -o ${serverInterface} -j MASQUERADE
- '';
-
- privateKeyFile = config.age.secrets."wg_${config.networking.hostName}".path;
- peers = [ serverPeer ];
- };
+ in
+ builtins.mapAttrs (interface: conf: {
+ address = client.allowedIPs;
+ dns = [ "fd0d::1" "10.100.0.1" ];
+ privateKeyFile = config.age.secrets."wg_${config.networking.hostName}".path;
+ } // conf) client.interfaces;
};
in {
+ boot.kernel.sysctl = lib.mkIf (config.networking.hostName == serverName) ({
+ "net.ipv6.conf.all.forwarding" = true;
+ "net.ipv6.conf.default.forwarding" = true;
+ });
networking =
lib.mkMerge [
(lib.mkIf (config.networking.hostName == serverName) serverConfig)
- (lib.mkIf (builtins.hasAttr config.networking.hostName clients) clientConfig)
+ (lib.mkIf (config.networking.hostName != serverName) clientConfig)
];
}
diff --git a/modules/user/bspwm.nix b/modules/user/bspwm.nix
deleted file mode 100644
index dbeef3d..0000000
--- a/modules/user/bspwm.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-# Depends on eww
-{ config, pkgs, ... }: {
- xsession.windowManager.bspwm = {
- enable = true;
- monitors = { eDP-1 = [ "1" "2" "3" "4" "5" "6" "7" "8" "9" "0"]; };
- settings = {
- window_gap = 10;
- border_width = 0;
- split_ratio = 0.5;
- top_padding = 35;
- };
- extraConfig = ''
- ${pkgs.feh}/bin/feh --no-fehbg --bg-fill ~/Pictures/Wallpapers/current
-
- ${pkgs.procps}/bin/pkill -SIGINT eww
- ${pkgs.eww}/bin/eww open mainbar
- '';
- };
-}
diff --git a/modules/user/catppuccin.nix b/modules/user/catppuccin.nix
new file mode 100644
index 0000000..176b42c
--- /dev/null
+++ b/modules/user/catppuccin.nix
@@ -0,0 +1,75 @@
+{ config, inputs, lib, pkgs, ... }: {
+ imports = [
+ inputs.catppuccin.homeManagerModules.catppuccin
+ ];
+
+ options.catppuccin.colors = lib.mkOption {
+ type = lib.types.attrs;
+ default = (builtins.fromJSON (builtins.readFile "${inputs.catppuccin-palette}/palette.json"))."${config.catppuccin.flavor}".colors;
+ };
+ options.catppuccin.hexcolors = lib.mkOption {
+ type = lib.types.attrs;
+ default = builtins.mapAttrs (name: value: value.hex) config.catppuccin.colors;
+ };
+
+ config = {
+ catppuccin = {
+ accent = lib.mkDefault "pink";
+ flavor = lib.mkDefault "mocha";
+ kitty.enable = true;
+ gtk.enable = true;
+ hyprlock.enable = true;
+ nvim.enable = true;
+ };
+
+ specialisation = {
+ light.configuration.catppuccin.flavor = "latte";
+ dark.configuration.catppuccin.flavor = "mocha";
+ };
+
+ home.packages = [(pkgs.writeShellScriptBin "theme" ''
+ last_path="$HOME/.local/state/last-theme"
+ target="$1"
+ if [ "$target" == "get_last" ]; then
+ if [ ! -e "$last_path" ]; then
+ echo "no last theme found; assuming dark" >&2
+ target="dark"
+ else
+ target=$(cat "$last_path" | tr -d "\n")
+ fi
+ echo "$target"
+ exit 0
+ fi
+ if [ "$target" == "restore" ]; then
+ echo "restoring theme"
+ if [ ! -e "$last_path" ]; then
+ echo "no last theme found; assuming dark" >&2
+ target="dark"
+ else
+ target=$(cat "$last_path" | tr -d "\n")
+ fi
+ fi
+ if [ "$target" != "dark" ] && [ "$target" != "light" ]; then
+ echo "invalid theme, valid values: [dark, light, restore]"
+ exit 1
+ fi
+ current="$HOME/.local/state/home-manager/gcroots/current-home/"
+ cached="$HOME/.local/state/last-parent-specialisation"
+ if [ -d "$current/specialisation" ]; then
+ if [ -d "$cached" ]; then
+ rm -f "$cached"
+ fi
+ ln -sf "$(readlink -f $current)" "$cached"
+ fi
+
+ if [ ! -d "$cached/specialisation" ]; then
+ echo "no specialisations found"
+ exit 1
+ fi
+
+ "$cached/specialisation/$target/activate"
+
+ echo "$target" > "$last_path"
+ '')];
+ };
+}
diff --git a/modules/user/comma.nix b/modules/user/comma.nix
new file mode 100644
index 0000000..5ae7f03
--- /dev/null
+++ b/modules/user/comma.nix
@@ -0,0 +1,7 @@
+{ inputs, ... }: {
+ imports = [
+ inputs.nix-index-database.homeModules.default
+ ];
+ programs.nix-index.enable = true;
+ programs.nix-index-database.comma.enable = true;
+}
diff --git a/modules/user/direnv.nix b/modules/user/direnv.nix
index 3f54b94..2329800 100644
--- a/modules/user/direnv.nix
+++ b/modules/user/direnv.nix
@@ -5,7 +5,7 @@
enable = true;
};
};
- programs.git.extraConfig.core.excludesFile = ".envrc";
+ programs.git.settings.core.excludesFile = ".envrc";
# We can't use .source since hm manages this file too
xdg.configFile."direnv/direnvrc".text = builtins.readFile ../../res/direnvrc;
home.activation = {
diff --git a/modules/user/dunst.nix b/modules/user/dunst.nix
index 08f4d62..2ae1404 100644
--- a/modules/user/dunst.nix
+++ b/modules/user/dunst.nix
@@ -12,9 +12,9 @@ in {
global = {
monitor = 0;
follow = "mouse";
- width = 460;
+ width = "(100, 450)";
origin = "top-right";
- offset = "24x35";
+ offset = "24x50";
notification_limit = 0;
indicate_hidden = true;
shrink = true;
@@ -36,7 +36,7 @@ in {
hide_duplicate_count = true;
show_indicators = false;
icon_position = "left";
- max_icon_size = 32;
+ max_icon_size = 40;
sticky_history = true;
history_length = 100;
browser = "${pkgs.firefox}/bin/firefox -new-tab";
@@ -49,21 +49,21 @@ in {
};
urgency_low = {
- background = "#12131b";
- foreground = "#d8dee8";
+ background = config.catppuccin.hexcolors.crust;
+ foreground = config.catppuccin.hexcolors.text;
timeout = 3;
};
urgency_normal = {
- background = "#12131b";
- foreground = "#d8dee8";
+ background = config.catppuccin.hexcolors.crust;
+ foreground = config.catppuccin.hexcolors.text;
timeout = 5;
};
urgency_critical = {
- background = "#12131b";
- foreground = "#d8dee8";
- # frame_color = "#bf616a";
+ background = config.catppuccin.hexcolors.crust;
+ foreground = config.catppuccin.hexcolors.text;
+ frame_color = config.catppuccin.hexcolors.red;
timeout = 0;
};
};
diff --git a/modules/user/eww.nix b/modules/user/eww.nix
index b0a8099..13db70e 100644
--- a/modules/user/eww.nix
+++ b/modules/user/eww.nix
@@ -1,8 +1,29 @@
-# Depends on bspwm
-{ pkgs, ... }: {
- home.packages = with pkgs; [ xtitle ];
+{ config, lib, pkgs, ... }:
+let
+ inherit (lib) boolToString defaultTo;
+ res = pkgs.stdenvNoCC.mkDerivation {
+ pname = "eww-wayland-config";
+ version = "1.0.0";
+ dontUnpack = true;
+ installPhase = ''
+ cp -r ${../../res/eww} $out
+
+ substituteInPlace $out/eww.yuck \
+ --replace-fail "_BAT_ENABLED_" "${boolToString (config.me.batteryDevice != null)}" \
+ --replace-fail "_BAT_PATH_" "${defaultTo "" config.me.batteryDevice}" \
+ --replace-fail "_BT_ENABLED_" "${boolToString config.me.hasBluetooth}" \
+ --replace-fail "_WIFI_ENABLED_" "${boolToString config.me.hasWifi}"
+
+ substituteInPlace $out/eww.scss \
+ --replace-fail "EWW_BACKGROUND" "${config.catppuccin.hexcolors.crust}" \
+ --replace-fail "EWW_TEXT" "${config.catppuccin.hexcolors.text}" \
+ --replace-fail "EWW_ACCENT" "${config.catppuccin.hexcolors.${config.catppuccin.accent}}"
+ '';
+ };
+in {
+ home.packages = with pkgs; [ iw socat ];
programs.eww = {
enable = true;
- configDir = ../../res/eww;
};
+ xdg.configFile."eww".source = res;
}
diff --git a/modules/user/git.nix b/modules/user/git.nix
index beea776..ca2762e 100644
--- a/modules/user/git.nix
+++ b/modules/user/git.nix
@@ -1,14 +1,16 @@
-{ config, ... }: {
+{ ... }: {
programs.git = {
enable = true;
- userName = "LavaDesu";
- userEmail = "me@lava.moe";
signing = {
key = "059F098EBF0E9A13E10A46BF6500251E087653C9";
signByDefault = true;
};
- extraConfig = {
+ settings = {
+ user.name = "Cilly Leang";
+ user.email = "mini@cilly.moe";
core.abbrev = 11;
+ safe.directory = "/home/rin/Projects/flakes";
+ init.defaultBranch = "master";
};
};
}
diff --git a/modules/user/gpg.nix b/modules/user/gpg.nix
index a8ab12f..dba731f 100644
--- a/modules/user/gpg.nix
+++ b/modules/user/gpg.nix
@@ -1,10 +1,10 @@
-{ config, enableGUI, ... }: {
+{ config, pkgs, ... }: {
programs.gpg = {
enable = true;
homedir = "${config.xdg.dataHome}/gnupg";
};
services.gpg-agent = {
enable = true;
- pinentryFlavor = if enableGUI then "gnome3" else "tty";
+ pinentry.package = pkgs.pinentry-gnome3;
};
}
diff --git a/modules/user/hypridle.nix b/modules/user/hypridle.nix
new file mode 100644
index 0000000..af7af86
--- /dev/null
+++ b/modules/user/hypridle.nix
@@ -0,0 +1,45 @@
+{ config, lib, pkgs, ... }:
+let
+ kblight = "brightnessctl -d ${config.me.kbBacklightDevice}";
+in
+{
+ home.packages = [ config.services.hypridle.package ];
+ services.hypridle = {
+ enable = true;
+ settings = {
+ general = {
+ lock_cmd = "pidof hyprlock || hyprlock";
+ before_sleep_cmd = "${lib.getExe pkgs.playerctl} pause; loginctl lock-session";
+ after_sleep_cmd = "hyprctl dispatch dpms on";
+ };
+
+ listener = lib.optionals (config.me.kbBacklightDevice != null) [
+ {
+ timeout = 120;
+ on-timeout = "${kblight} -s && ${kblight} 0";
+ on-resume = "${kblight} -r";
+ }
+ ] ++ [
+ {
+ timeout = 150;
+ on-timeout = "brightnessctl -s && brightnessctl 50%-";
+ on-resume = "brightnessctl -r";
+ }
+ {
+ timeout = 180;
+ on-timeout = "brightnessctl -r && loginctl lock-session";
+ }
+ {
+ timeout = 195;
+ on-timeout = "hyprctl dispatch dpms off";
+ on-resume = "hyprctl dispatch dpms on";
+ }
+ ] ++ lib.optionals (config.me.environment == "laptop") [
+ {
+ timeout = 600;
+ on-timeout = "systemctl suspend";
+ }
+ ];
+ };
+ };
+}
diff --git a/modules/user/hyprlock.nix b/modules/user/hyprlock.nix
new file mode 100644
index 0000000..529c522
--- /dev/null
+++ b/modules/user/hyprlock.nix
@@ -0,0 +1,148 @@
+{ config, lib, ... }:
+let
+ scaling = if config.me.hidpi then 1 else 0.5;
+ s = value: if builtins.isInt value || builtins.isFloat value
+ then
+ builtins.floor (value * scaling)
+ else if builtins.isList value
+ then
+ lib.strings.concatMapStringsSep "," (v: builtins.toString (scaling * v)) value
+ else
+ builtins.throw "invalid scaled value type ${builtins.typeOf value} for ${value}";
+ sn = value: s (builtins.map (v: (-v)) value);
+in
+{
+ programs.hyprlock = {
+ enable = true;
+ settings = {
+ general = {
+ disable_loading_bar = true;
+ hide_cursor = true;
+ };
+ auth = {
+ fingerprint = {
+ enabled = config.me.hasFingerprint;
+ ready_message = "Scan fingerprint to unlock";
+ };
+ };
+ background = {
+ monitor = "";
+ color = "$base";
+ };
+ shape = lib.optionals (config.me.batteryDevice != null) [
+ # Battery pill
+ {
+ monitor = "";
+ size = s [165 65];
+ color = "$crust";
+ rounding = -1;
+ halign = "right";
+ valign = "top";
+ position = sn [595 10];
+ }
+ ] ++ [
+ # Time pill
+ {
+ monitor = "";
+ size = s [545 65];
+ color = "$crust";
+ rounding = -1;
+ halign = "right";
+ valign = "top";
+ position = sn [40 10];
+ }
+ ];
+ label = lib.optionals config.me.hasFingerprint [
+ # Fingerprint icon
+ {
+ monitor = "";
+ color = "$text";
+ font_family = "Material Symbols Outlined";
+ font_size = s 64;
+ halign = "center";
+ valign = "top";
+ position = sn [0 100];
+ text = "";
+ }
+ # Fingerprint text
+ {
+ monitor = "";
+ color = "$text";
+ text = "$FPRINTPROMPT";
+ font_size = s 25;
+ font_family = "Open Sans";
+ position = sn [0 235];
+ halign = "center";
+ valign = "top";
+ }
+ ] ++ lib.optionals (config.me.batteryDevice != null) [
+ # Battery icon
+ {
+ monitor = "";
+ text = "";
+ color = "$accent";
+ font_family = "Material Symbols Outlined";
+ font_size = s 27;
+ position = sn [695 20];
+ halign = "right";
+ valign = "top";
+ }
+ # Battery percentage
+ {
+ monitor = "";
+ text = ''cmd[update:60000] echo "$(cat /sys/class/power_supply/${config.me.batteryDevice}/capacity)%"'';
+ color = "$text";
+ font_size = s 23;
+ font_family = "Open Sans";
+ position = sn [625 20];
+ halign = "right";
+ valign = "top";
+ }
+ ] ++ [
+ # Time and Date
+ {
+ monitor = "";
+ color = "$text";
+ font_family = "Open Sans";
+ font_size = s 23;
+ halign = "right";
+ valign = "top";
+ position = sn [70 20];
+ text = ''cmd[update:1000] echo "$(date '+%A, %d %B %Y') $(date +%H:%M)$(date +:%S)"'';
+ }
+
+ # Fail text under input
+ {
+ monitor = "";
+ color = "$red";
+ font_family = "Open Sans";
+ font_size = s 25;
+ text = "$FAIL $ATTEMPTS[]";
+ position = sn [0 200];
+ halign = "center";
+ valign = "center";
+ }
+ ];
+ input-field = {
+ monitor = "";
+ size = s [600 120];
+ outline_thickness = s 4;
+ check_color = "$peach";
+ dots_size = 0.2;
+ dots_spacing = 0.2;
+ dots_center = true;
+ fail_text = "";
+ font_color = "$text";
+ inner_color = "$crust";
+ outer_color = "$base";
+ placeholder_text = "Password";
+ fade_on_empty = false;
+ hide_input = false;
+ capslock_color = "$yellow";
+ position = sn [0 47];
+ halign = "center";
+ valign = "center";
+ };
+ };
+ };
+}
diff --git a/modules/user/kitty.nix b/modules/user/kitty.nix
index a7a7601..ddc189a 100644
--- a/modules/user/kitty.nix
+++ b/modules/user/kitty.nix
@@ -9,10 +9,11 @@
settings = {
font_features = "-ss01 +ss19";
enable_audio_bell = false;
+ color5 = config.catppuccin.hexcolors.mauve;
+ color13 = config.catppuccin.hexcolors.mauve;
+ window_margin_width = 5;
+ scrollback_pager = ''nvim --noplugin -c "set signcolumn=no showtabline=0" -c "silent write! /tmp/kitty_scrollback_buffer | te cat /tmp/kitty_scrollback_buffer - " -c "autocmd VimEnter * normal G"'';
+ scrollback_pager_history_size = 2;
};
- extraConfig = builtins.readFile (builtins.fetchurl {
- url = "https://raw.githubusercontent.com/folke/tokyonight.nvim/eede574f9ef57137e6d7e4bab37b09db636c5a56/extras/kitty_tokyonight_night.conf";
- sha256 = "0l9yl3qmgf7b10x7hy7q5hma0hsyamq3n14lfbw31cimm6snwim6";
- });
};
}
diff --git a/modules/user/mpv.nix b/modules/user/mpv.nix
index c740392..6ef3da4 100644
--- a/modules/user/mpv.nix
+++ b/modules/user/mpv.nix
@@ -1,7 +1,7 @@
-{ config, pkgs, ... }: {
+{ pkgs, ... }: {
programs.mpv = {
enable = true;
- package = pkgs.wrapMpv pkgs.mpv-unwrapped {
+ package = pkgs.mpv.override {
youtubeSupport = true;
scripts = [ pkgs.mpvScripts.mpris ];
};
diff --git a/modules/user/neovim-minimal.nix b/modules/user/neovim-minimal.nix
index e319e38..392097d 100644
--- a/modules/user/neovim-minimal.nix
+++ b/modules/user/neovim-minimal.nix
@@ -9,11 +9,12 @@
vimAlias = true;
vimdiffAlias = true;
withNodeJs = false;
+ withPython3 = false;
+ withRuby = false;
plugins = with pkgs.vimPlugins; [
- ctrlp-vim
+ fzf-vim
lualine-nvim
- nerdtree
tokyonight-nvim
vim-fugitive
vim-nix
@@ -21,14 +22,7 @@
vim-signify
vim-surround
- nvim-cmp
- nvim-lspconfig
- cmp-nvim-lsp
- cmp_luasnip
- luasnip
-
(nvim-treesitter.withPlugins (p: with p; [
- tree-sitter-comment
tree-sitter-json
tree-sitter-lua
tree-sitter-nix
diff --git a/modules/user/neovim.nix b/modules/user/neovim.nix
index 7082f34..2b8d4c1 100644
--- a/modules/user/neovim.nix
+++ b/modules/user/neovim.nix
@@ -1,7 +1,9 @@
-{ config, lib, pkgs, ... }:
+{ config, lib, pkgs, sysConfig, ... }:
let
luaconf = pkgs.writeText "config.lua"
- (lib.replaceStrings ["{{OMNISHARP_PATH}}"] ["${pkgs.omnisharp-roslyn}/bin/omnisharp"]
+ (lib.replaceStrings
+ ["{{OMNISHARP_PATH}}" "{{DART_PATH}}" "{{CATPPUCCIN_FLAVOUR}}" "{{USERNAME}}" "{{HOSTNAME}}"]
+ ["${pkgs.omnisharp-roslyn}/bin/OmniSharp" "${pkgs.dart}/bin/dart" config.catppuccin.nvim.flavor config.home.username sysConfig.networking.hostName]
(builtins.readFile ../../res/config.lua));
in {
systemd.user.tmpfiles.rules = [
@@ -13,52 +15,81 @@ in {
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
- package = pkgs.neovim-nightly;
+ #package = pkgs.neovim-nightly;
withNodeJs = true;
+ withPython3 = true;
+ withRuby = false;
extraPackages = with pkgs; [
+ nixd
rust-analyzer
- nodePackages.diagnostic-languageserver
- nodePackages.eslint_d
- nodePackages.typescript-language-server
- nodePackages.vscode-langservers-extracted
- nodePackages.yaml-language-server
+ texlab
+ astro-language-server
+ tailwindcss-language-server
+ diagnostic-languageserver
+ eslint_d
+ typescript-language-server
+ vscode-langservers-extracted
+ yaml-language-server
];
plugins = with pkgs.vimPlugins; [
- ctrlp-vim
+ autoclose-nvim
+ auto-save-nvim
+ flutter-tools-nvim
+ fzf-vim
+ fzf-lsp-nvim
lualine-nvim
- nerdtree
+ nvim-ts-autotag
+ nvim-web-devicons
+ plenary-nvim
tokyonight-nvim
vim-fugitive
+ vim-latex-live-preview
vim-nix
vim-repeat
vim-signify
vim-surround
+ vimtex
+ lsp_signature-nvim
nvim-cmp
+ nvim-dap
+ nvim-highlight-colors
nvim-lspconfig
cmp-nvim-lsp
cmp_luasnip
luasnip
- (pkgs.me.nvim-treesitter-nightly.withPlugins (p: with p; [
- tree-sitter-comment
+ #(pkgs.me.nvim-treesitter-nightly.withPlugins (p: with p; [
+ (nvim-treesitter.withPlugins (p: with p; [
+ tree-sitter-astro
+ tree-sitter-bash
+ tree-sitter-c
tree-sitter-c-sharp
- pkgs.me.tree-sitter-glimmer
+ tree-sitter-cpp
+ tree-sitter-groovy
tree-sitter-html
+ tree-sitter-java
tree-sitter-javascript
- tree-sitter-jsdoc
tree-sitter-json
- pkgs.me.tree-sitter-jsonc
+ tree-sitter-kotlin
+ tree-sitter-latex
tree-sitter-lua
+ tree-sitter-markdown
tree-sitter-nix
tree-sitter-php
+ tree-sitter-python
+ tree-sitter-query
tree-sitter-regex
tree-sitter-rust
+ tree-sitter-swift
tree-sitter-toml
- tree-sitter-typescript
tree-sitter-tsx
+ tree-sitter-typescript
+ tree-sitter-vim
+ tree-sitter-vimdoc
+ tree-sitter-xml
tree-sitter-yaml
]))
];
diff --git a/modules/user/obs.nix b/modules/user/obs.nix
new file mode 100644
index 0000000..9ad912e
--- /dev/null
+++ b/modules/user/obs.nix
@@ -0,0 +1,10 @@
+{ pkgs, ... }: {
+ programs.obs-studio = {
+ enable = true;
+ plugins = with pkgs.obs-studio-plugins; [
+ obs-pipewire-audio-capture
+ obs-vaapi
+ obs-vkcapture
+ ];
+ };
+}
diff --git a/modules/user/pass.nix b/modules/user/pass.nix
deleted file mode 100644
index f1d4c3d..0000000
--- a/modules/user/pass.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-{ pkgs, ... }: {
- programs.password-store = {
- enable = true;
- package = pkgs.pass.withExtensions (exts: with exts; [ pass-import pass-otp ]);
- };
-}
diff --git a/modules/user/picom.nix b/modules/user/picom.nix
deleted file mode 100644
index 31bcfd1..0000000
--- a/modules/user/picom.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{ config, ... }: {
- services.picom = {
- enable = true;
- experimentalBackends = true;
-
- blur = true;
- blurExclude = [
- (builtins.concatStringsSep " && " [
- "class_g != 'Alacritty'"
- "class_g != 'kitty'"
- #"class_g != 'Polybar'"
- "class_g != 'URxvt'"
- ])
- ];
- fade = true;
- fadeDelta = 5;
- fadeSteps = [ "0.05" "0.05" ];
-
- opacityRule = [
- "80:class_g = 'Alacritty' && !focused"
- "95:class_g = 'kitty' && !focused"
- ];
- vSync = true;
-
- extraOptions = ''
- glx-no-stencil = true;
- glx-copy-from-front = false;
- glx-no-rebind-pixmap = true;
- # https://github.com/yshui/picom/issues/578
- glx-use-copysubbuffer-mesa = false;
- use-damage = true;
-
- blur-method = "dual_kawase";
- blur-strength = 15;
-
- detect-transient = true;
- detect-client-leader = true;
- detect-client-opacity = true;
- detect-rounded-corners = true;
- use-ewmh-active-win = true;
- mark-wmwin-focused = true;
- mark-ovredir-focused = true;
- '';
- };
-}
diff --git a/modules/user/polybar.nix b/modules/user/polybar.nix
deleted file mode 100644
index 7b288a0..0000000
--- a/modules/user/polybar.nix
+++ /dev/null
@@ -1,165 +0,0 @@
-{ config, ... }: {
- services.polybar =
- let
- colours = {
- background1 = "#1a1b26";
- background2 = "#9d7cd8";
- accent = "#c0caf5";
- foreground2 = "#1a1b26";
- foreground2trans = "#cc1a1b26";
- };
- in {
- enable = true;
- script = builtins.readFile ../../scripts/polybar.sh;
- settings = {
- "bar/scroller" = {
- monitor = "eDP-1";
- width = "100%";
- height = 1;
- background = colours.background1;
- spacing = 2;
- override-redirect = true;
-
- modules.center = "workspaces-stub";
- scroll = {
- up = "#workspaces-stub.prev";
- down = "#workspaces-stub.next";
- };
- };
-
- "bar/top" = {
- monitor = "eDP-1";
- width = "100%";
- height = 29;
- background = colours.background1;
- foreground = "#fff";
- offset-y = 3;
-
- spacing = 2;
- padding = {
- left = 5;
- right = 5;
- bottom = 5;
- };
- override-redirect = true;
- wm-restack = "bspwm";
-
- font = [
- "NotoSans:style=SemiBold:size=11:antialias=true;2"
- "NotoSans:size=11:antialias=true;2"
- "MaterialIcons:size=17:antialias=true;6"
- "Iosevka:style=Medium:antialias=false:size=19;4"
-
- "HanaMinA:size=9.8;1"
- "HanaMinB:size=9.8;1"
- ];
-
- modules = {
- left = "left workspaces right";
- center = "title";
- right = "left datetime right";
- };
-
- enable-ipc = true;
- scroll = {
- up = "#workspaces.prev";
- down = "#workspaces.next";
- };
- };
-
- "module/left" = {
- type = "custom/text";
-
- content = {
- text = "%{T4}";
- background = colours.background1;
- foreground = colours.background2;
- };
- };
-
- "module/right" = {
- type = "custom/text";
-
- content = {
- text = "%{T4}";
- background = colours.background1;
- foreground = colours.background2;
- };
- };
-
- "module/workspaces" = {
- type = "internal/bspwm";
-
- pin-workspaces = true;
- enable-click = true;
- enable-scroll = false;
- reverse-scroll = false;
-
- label = {
- monitor = "";
- focused = {
- text = "%{T3}"; # ef4a
- background = colours.background2;
- foreground = colours.accent;
- };
- occupied = {
- text = "%{T3}"; # e837
- background = colours.background2;
- foreground = colours.background1;
- };
- empty = {
- text = "%{T3}"; # ef4a
- background = colours.background2;
- foreground = colours.background1;
- };
- urgent = {
- text = "%{T3}"; # e837
- background = colours.background2;
- foreground = colours.background1;
- };
-
- separator = {
- text = " ";
- background = colours.background2;
- padding = "0";
- };
- };
- };
-
- "module/workspaces-stub" = {
- type = "internal/bspwm";
- pin-workspaces = true;
- enable-click = false;
- enable-scroll = false;
- reverse-scroll = false;
- label = {
- monitor = "";
- focused = "";
- occupied = "";
- empty = "";
- urgent = "";
- separator = "";
- };
- };
-
- "module/title" = {
- type = "internal/xwindow";
- format = {
- text = "%{T1}