Compare commits
2 commits
7bd2af2396
...
7cf2d318c6
Author | SHA1 | Date | |
---|---|---|---|
7cf2d318c6 | |||
67fd47275d |
5 changed files with 10 additions and 5 deletions
|
@ -31,6 +31,7 @@ jobs:
|
||||||
uses: cachix/install-nix-action@v30
|
uses: cachix/install-nix-action@v30
|
||||||
with:
|
with:
|
||||||
install_url: https://releases.nixos.org/nix/nix-2.25.4/install
|
install_url: https://releases.nixos.org/nix/nix-2.25.4/install
|
||||||
|
extra_nix_config: 'accept-flake-config = true'
|
||||||
- name: Sync repository
|
- name: Sync repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ ... }: {
|
{ ... }:
|
||||||
|
{
|
||||||
programs.ghostty = {
|
programs.ghostty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{...}: {
|
{ ... }:
|
||||||
|
{
|
||||||
programs.irssi = {
|
programs.irssi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
networks.liberachat = {
|
networks.liberachat = {
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
font = {
|
font = {
|
||||||
|
@ -15,7 +16,7 @@
|
||||||
clear_all_shortcuts = true;
|
clear_all_shortcuts = true;
|
||||||
|
|
||||||
# will probably lower this later but the max allowed is actually 4GB
|
# will probably lower this later but the max allowed is actually 4GB
|
||||||
# this is NOT stored in memory and can only be viewed wth scrollback_pager
|
# this is NOT stored in memory and can only be viewed with scrollback_pager
|
||||||
"scrollback_pager_history_size" = "1024";
|
"scrollback_pager_history_size" = "1024";
|
||||||
# see https://github.com/sharkdp/bat/issues/1077#issuecomment-652785399
|
# see https://github.com/sharkdp/bat/issues/1077#issuecomment-652785399
|
||||||
"scrollback_pager" = "bat --pager='less -FR +G'";
|
"scrollback_pager" = "bat --pager='less -FR +G'";
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
{
|
{
|
||||||
services.conduwuit = {
|
services.conduwuit = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.conduwuit.packages.x86_64-linux.static-x86_64-linux-musl-all-features-x86_64-haswell-optimised;
|
package =
|
||||||
|
inputs.conduwuit.packages.x86_64-linux.static-x86_64-linux-musl-all-features-x86_64-haswell-optimised;
|
||||||
settings.global = {
|
settings.global = {
|
||||||
port = [ 8448 ];
|
port = [ 8448 ];
|
||||||
server_name = "cything.io";
|
server_name = "cything.io";
|
||||||
|
|
Loading…
Add table
Reference in a new issue