Compare commits
3 commits
82daaac80d
...
d6a51195f0
Author | SHA1 | Date | |
---|---|---|---|
|
d6a51195f0 | ||
|
ca43b02c9f | ||
|
e93707a52a |
8 changed files with 27 additions and 4 deletions
|
@ -126,7 +126,7 @@
|
||||||
inherit (nixpkgs) lib;
|
inherit (nixpkgs) lib;
|
||||||
|
|
||||||
|
|
||||||
meta = {nixpackages ? nixpkgs}: rec {
|
meta = { nixpackages ? nixpkgs }: rec {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = import nixpackages {
|
pkgs = import nixpackages {
|
||||||
inherit system;
|
inherit system;
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
./stylix.nix
|
./stylix.nix
|
||||||
./vim.nix
|
./vim.nix
|
||||||
./yubikey.nix
|
./yubikey.nix
|
||||||
|
./zellij.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
|
|
|
@ -15,7 +15,8 @@ with pkgs;
|
||||||
init.defaultBranch = "main";
|
init.defaultBranch = "main";
|
||||||
pull.ff = "only";
|
pull.ff = "only";
|
||||||
};
|
};
|
||||||
diff-so-fancy.enable = true;
|
#diff-so-fancy.enable = true;
|
||||||
|
difftastic.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -35,12 +35,12 @@ in
|
||||||
in
|
in
|
||||||
[
|
[
|
||||||
fixXhost
|
fixXhost
|
||||||
pkgs.kitty
|
|
||||||
pkgs.autorandr
|
pkgs.autorandr
|
||||||
pkgs.polygon-art.polygon-art
|
pkgs.polygon-art.polygon-art
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
programs.i3status-rust = {
|
programs.i3status-rust = {
|
||||||
enable = true;
|
enable = true;
|
||||||
bars = {
|
bars = {
|
||||||
|
@ -115,6 +115,10 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.kitty = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
13
nixos/homes/palo/zellij.nix
Normal file
13
nixos/homes/palo/zellij.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -20,6 +20,7 @@
|
||||||
services.gitea = {
|
services.gitea = {
|
||||||
enable = true;
|
enable = true;
|
||||||
appName = "git.chungus.private";
|
appName = "git.chungus.private";
|
||||||
|
package = pkgs.forgejo;
|
||||||
stateDir = "/srv/gitea";
|
stateDir = "/srv/gitea";
|
||||||
settings = {
|
settings = {
|
||||||
server.ROOT_URL = "http://git.chungus.private/";
|
server.ROOT_URL = "http://git.chungus.private/";
|
||||||
|
|
|
@ -15,9 +15,12 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
# todo move to forgejo
|
||||||
services.gitea = {
|
services.gitea = {
|
||||||
enable = true;
|
enable = true;
|
||||||
appName = "git.ingolf-wagner.de";
|
appName = "git.ingolf-wagner.de";
|
||||||
|
package = pkgs.forgejo;
|
||||||
#cookieSecure = true;
|
#cookieSecure = true;
|
||||||
#disableRegistration = true;
|
#disableRegistration = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
# deprecated
|
# deprecated
|
||||||
services.nginx.virtualHosts."${config.networking.hostName}.private" = {
|
services.nginx.virtualHosts."${config.networking.hostName}.private" = {
|
||||||
default = true;
|
default = true;
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
|
|
Loading…
Reference in a new issue