Compare commits

...

3 commits

Author SHA1 Message Date
Ingolf Wagner d6a51195f0
update gitea to forgejo 2024-02-24 03:17:50 +01:00
Ingolf Wagner ca43b02c9f
updated landingpage 2024-02-24 03:17:49 +01:00
Ingolf Wagner e93707a52a
add zellij 2024-02-24 03:17:48 +01:00
8 changed files with 27 additions and 4 deletions

View file

@ -126,7 +126,7 @@
inherit (nixpkgs) lib;
meta = {nixpackages ? nixpkgs}: rec {
meta = { nixpackages ? nixpkgs }: rec {
system = "x86_64-linux";
pkgs = import nixpackages {
inherit system;

View file

@ -11,6 +11,7 @@
./stylix.nix
./vim.nix
./yubikey.nix
./zellij.nix
];
home.stateVersion = "22.11";

View file

@ -15,7 +15,8 @@ with pkgs;
init.defaultBranch = "main";
pull.ff = "only";
};
diff-so-fancy.enable = true;
#diff-so-fancy.enable = true;
difftastic.enable = true;
};

View file

@ -35,12 +35,12 @@ in
in
[
fixXhost
pkgs.kitty
pkgs.autorandr
pkgs.polygon-art.polygon-art
];
programs.i3status-rust = {
enable = true;
bars = {
@ -115,6 +115,10 @@ in
};
};
programs.kitty = {
enable = true;
};
programs.alacritty = {
enable = true;
settings = {

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
with pkgs;
{
programs.zellij = {
enable = true;
# zsh will automatically start in zelllij
#enableZshIntegration = true;
settings = {
on_force_close = "quit";
};
};
}

View file

@ -20,6 +20,7 @@
services.gitea = {
enable = true;
appName = "git.chungus.private";
package = pkgs.forgejo;
stateDir = "/srv/gitea";
settings = {
server.ROOT_URL = "http://git.chungus.private/";

View file

@ -15,9 +15,12 @@
};
};
# todo move to forgejo
services.gitea = {
enable = true;
appName = "git.ingolf-wagner.de";
package = pkgs.forgejo;
#cookieSecure = true;
#disableRegistration = true;
settings = {

View file

@ -1,5 +1,5 @@
{ config, lib, pkgs, ... }: {
# deprecated
# deprecated
services.nginx.virtualHosts."${config.networking.hostName}.private" = {
default = true;
locations."/" = {