Compare commits

..

2 commits

Author SHA1 Message Date
cy
7cf2d318c6 nix fmt 2025-01-22 03:08:18 -05:00
cy
67fd47275d cachix donesnt accept-flake-config by default 2025-01-22 03:06:58 -05:00
5 changed files with 10 additions and 5 deletions

View file

@ -31,6 +31,7 @@ jobs:
uses: cachix/install-nix-action@v30
with:
install_url: https://releases.nixos.org/nix/nix-2.25.4/install
extra_nix_config: 'accept-flake-config = true'
- name: Sync repository
uses: actions/checkout@v4
with:

View file

@ -1,4 +1,5 @@
{ ... }: {
{ ... }:
{
programs.ghostty = {
enable = true;
enableZshIntegration = true;

View file

@ -1,4 +1,5 @@
{...}: {
{ ... }:
{
programs.irssi = {
enable = true;
networks.liberachat = {

View file

@ -1,4 +1,5 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
font = {
@ -15,7 +16,7 @@
clear_all_shortcuts = true;
# 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";
# see https://github.com/sharkdp/bat/issues/1077#issuecomment-652785399
"scrollback_pager" = "bat --pager='less -FR +G'";

View file

@ -2,7 +2,8 @@
{
services.conduwuit = {
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 = {
port = [ 8448 ];
server_name = "cything.io";