Compare commits
9 commits
ad3ded339f
...
d9d4e43c35
| Author | SHA1 | Date | |
|---|---|---|---|
| d9d4e43c35 | |||
| 30f81b2b79 | |||
| f0c21b2e79 | |||
| 91ba0212b2 | |||
| 5f5daf1047 | |||
| 397fb19e0b | |||
| 05928785b0 | |||
| 1d06352181 | |||
| ef29bdf5aa |
38 changed files with 3198 additions and 2632 deletions
33
;
Normal file
33
;
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
options,
|
||||||
|
machine,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib;
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
custom.program = mkOption {
|
||||||
|
type = types.attrsOf (
|
||||||
|
types.submodule (
|
||||||
|
{ config, ... }:
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
name = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
};
|
||||||
|
home-config = mkOption {
|
||||||
|
type = types.deferredModule;
|
||||||
|
};
|
||||||
|
system-config = mkOption {
|
||||||
|
type = types.deferredModule;
|
||||||
|
default = _: { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
config = if builtins.isNull machine.home-only then config.system-config else config.home-config;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
133
config.nix
Normal file
133
config.nix
Normal file
|
|
@ -0,0 +1,133 @@
|
||||||
|
inputs@{
|
||||||
|
nixpkgs,
|
||||||
|
deploy-rs,
|
||||||
|
self,
|
||||||
|
pkgsForSystem,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
rec {
|
||||||
|
configs =
|
||||||
|
configs: builtins.foldl' (acc: val: nixpkgs.lib.recursiveUpdate (config val) acc) { } configs;
|
||||||
|
config =
|
||||||
|
{
|
||||||
|
hostname,
|
||||||
|
capabilities,
|
||||||
|
type,
|
||||||
|
home-only ? null,
|
||||||
|
extra-modules ? [ ],
|
||||||
|
system ? "x86_64-linux",
|
||||||
|
deploy-hostname ? hostname,
|
||||||
|
deploy-options ? {
|
||||||
|
user = if builtins.isNull home-only then "root" else home-only;
|
||||||
|
sshUser = if builtins.isNull home-only then "jana" else home-only;
|
||||||
|
},
|
||||||
|
home-manager ? builtins.isNull home-only,
|
||||||
|
stateVersion ? "26.05",
|
||||||
|
}:
|
||||||
|
with nixpkgs.lib;
|
||||||
|
let
|
||||||
|
inherit (nixpkgs) lib;
|
||||||
|
matches-capabilities =
|
||||||
|
# all requirements are contained in the machine capabilities
|
||||||
|
requirements: lib.all (req: builtins.elem req capabilities) requirements;
|
||||||
|
program =
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
name,
|
||||||
|
requirements ? [ ],
|
||||||
|
home-config,
|
||||||
|
system-config ? (_: { }),
|
||||||
|
}:
|
||||||
|
if (matches-capabilities requirements) then
|
||||||
|
[ (if builtins.isNull home-only then (system-config inputs) else (home-config inputs)) ]
|
||||||
|
++
|
||||||
|
|
||||||
|
(
|
||||||
|
if builtins.isNull home-only then
|
||||||
|
[
|
||||||
|
(_: {
|
||||||
|
custom.program.${name}.defered-config = home-config;
|
||||||
|
})
|
||||||
|
]
|
||||||
|
else
|
||||||
|
[ ]
|
||||||
|
)
|
||||||
|
else
|
||||||
|
[ ];
|
||||||
|
specialArgsForHomeSystem =
|
||||||
|
{
|
||||||
|
system,
|
||||||
|
type,
|
||||||
|
capabilities,
|
||||||
|
}:
|
||||||
|
home-only: {
|
||||||
|
pkgs = pkgsForSystem system;
|
||||||
|
flakes = inputs;
|
||||||
|
inherit inputs;
|
||||||
|
inherit (inputs.secrets.packages.${system}) secrets;
|
||||||
|
machine = {
|
||||||
|
inherit
|
||||||
|
type
|
||||||
|
capabilities
|
||||||
|
stateVersion
|
||||||
|
home-only
|
||||||
|
program
|
||||||
|
;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
specialArgsForSystem = system: specialArgsForHomeSystem system null;
|
||||||
|
|
||||||
|
specialArgs = specialArgsForSystem {
|
||||||
|
inherit system type capabilities;
|
||||||
|
};
|
||||||
|
modules =
|
||||||
|
extra-modules
|
||||||
|
++ [ ./hosts/${hostname}/configuration.nix ]
|
||||||
|
++ (
|
||||||
|
if builtins.isNull home-only then
|
||||||
|
[ ./defaults/machine-config.nix ]
|
||||||
|
else
|
||||||
|
[ ./defaults/machine-or-home-config.nix ]
|
||||||
|
)
|
||||||
|
++ (
|
||||||
|
if home-manager then
|
||||||
|
[
|
||||||
|
inputs.home-manager.nixosModules.default
|
||||||
|
{
|
||||||
|
home-manager.extraSpecialArgs = specialArgs;
|
||||||
|
}
|
||||||
|
]
|
||||||
|
else
|
||||||
|
[ ]
|
||||||
|
);
|
||||||
|
in
|
||||||
|
{
|
||||||
|
deploy.nodes.${hostname} = {
|
||||||
|
hostname = deploy-hostname;
|
||||||
|
fastConnection = true;
|
||||||
|
profiles.system = {
|
||||||
|
path =
|
||||||
|
if (builtins.isNull home-only) then
|
||||||
|
deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.${hostname}
|
||||||
|
else
|
||||||
|
deploy-rs.lib.x86_64-linux.activate.home-manager self.nixosConfigurations.${hostname};
|
||||||
|
}
|
||||||
|
// deploy-options;
|
||||||
|
};
|
||||||
|
|
||||||
|
nixosConfigurations.${hostname} =
|
||||||
|
if builtins.isNull home-only then
|
||||||
|
(nixosSystem {
|
||||||
|
inherit system modules specialArgs;
|
||||||
|
})
|
||||||
|
else
|
||||||
|
inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
|
extraSpecialArgs = specialArgsForHomeSystem {
|
||||||
|
inherit system type capabilities;
|
||||||
|
} home-only;
|
||||||
|
inherit modules;
|
||||||
|
pkgs = pkgsForSystem system;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1,20 +1,20 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
inputs,
|
|
||||||
flakes,
|
flakes,
|
||||||
|
machine,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
(inputs.self + /modules/machine-type.nix)
|
./machine-or-home-config.nix
|
||||||
(inputs.self + /modules/program.nix)
|
|
||||||
(inputs.self + /programs)
|
|
||||||
];
|
];
|
||||||
|
|
||||||
system.stateVersion = "26.05";
|
system.stateVersion = machine.stateVersion;
|
||||||
services.resolved.enable = false;
|
services.resolved.enable = false;
|
||||||
|
|
||||||
|
xdg.mime.enable = lib.mkForce false;
|
||||||
|
|
||||||
# Enable SSH
|
# Enable SSH
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
9
defaults/machine-or-home-config.nix
Normal file
9
defaults/machine-or-home-config.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ inputs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
(../modules/program.nix)
|
||||||
|
(../programs)
|
||||||
|
(../users)
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
||||||
722
flake.lock
generated
722
flake.lock
generated
File diff suppressed because it is too large
Load diff
142
flake.nix
142
flake.nix
|
|
@ -2,21 +2,16 @@
|
||||||
description = "jana's server infrastructure";
|
description = "jana's server infrastructure";
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs";
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
||||||
colmena.url = "github:zhaofengli/colmena";
|
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
sops-nix.url = "github:Mic92/sops-nix";
|
|
||||||
vpn-confinement.url = "github:Maroka-chan/VPN-Confinement";
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
firefox-addons = {
|
|
||||||
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
# deployment
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
deploy-rs.url = "github:serokell/deploy-rs";
|
||||||
};
|
|
||||||
|
|
||||||
# websites
|
# websites
|
||||||
|
|
||||||
homepage.url = "github:jdonszelmann/homepage";
|
homepage.url = "github:jdonszelmann/homepage";
|
||||||
totpal.url = "github:jdonszelmann/totpal";
|
totpal.url = "github:jdonszelmann/totpal";
|
||||||
harmonica.url = "git+ssh://git@github.com/jdonszelmann/harmonica-tabs";
|
harmonica.url = "git+ssh://git@github.com/jdonszelmann/harmonica-tabs";
|
||||||
|
|
@ -25,39 +20,39 @@
|
||||||
compiler-construction-2021.url = "git+ssh://forgejo@git.donsz.nl/jana/eelco-visser-compiler-construction.git";
|
compiler-construction-2021.url = "git+ssh://forgejo@git.donsz.nl/jana/eelco-visser-compiler-construction.git";
|
||||||
mifg.url = "git+ssh://forgejo@git.donsz.nl/jana/money.is.fckn.gay.git";
|
mifg.url = "git+ssh://forgejo@git.donsz.nl/jana/money.is.fckn.gay.git";
|
||||||
|
|
||||||
|
# server
|
||||||
|
raw-data.url = "git+ssh://forgejo@git.donsz.nl/jana/raw-data.git";
|
||||||
secrets.url = "git+ssh://forgejo@git.donsz.nl/jana/server-secrets.git";
|
secrets.url = "git+ssh://forgejo@git.donsz.nl/jana/server-secrets.git";
|
||||||
|
sops-nix.url = "github:Mic92/sops-nix";
|
||||||
|
vpn-confinement.url = "github:Maroka-chan/VPN-Confinement";
|
||||||
|
|
||||||
|
# home
|
||||||
nixvim = {
|
nixvim = {
|
||||||
url = "github:nix-community/nixvim";
|
url = "github:nix-community/nixvim";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
t.url = "github:jdonszelmann/t-rs";
|
t.url = "github:jdonszelmann/t-rs";
|
||||||
dumpasm.url = "github:jdonszelmann/dumpasm";
|
dumpasm.url = "github:jdonszelmann/dumpasm";
|
||||||
|
|
||||||
kitty-search = {
|
kitty-search = {
|
||||||
url = "github:trygveaa/kitty-kitten-search";
|
url = "github:trygveaa/kitty-kitten-search";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
jujutsu = {
|
jujutsu = {
|
||||||
url = "github:martinvonz/jj";
|
url = "github:martinvonz/jj";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
p1n3appl3 = {
|
p1n3appl3 = {
|
||||||
url = "github:p1n3appl3/config";
|
url = "github:p1n3appl3/config";
|
||||||
inputs.rahul-config.follows = "rahul-config";
|
inputs.rahul-config.follows = "rahul-config";
|
||||||
};
|
};
|
||||||
rahul-config.url = "github:jdonszelmann/nix-config";
|
rahul-config.url = "github:jdonszelmann/nix-config";
|
||||||
|
|
||||||
niri-unstable.url = "github:YaLTeR/niri";
|
niri-unstable.url = "github:YaLTeR/niri";
|
||||||
niri = {
|
niri = {
|
||||||
url = "github:sodiboo/niri-flake";
|
url = "github:sodiboo/niri-flake";
|
||||||
inputs.niri-unstable.follows = "niri-unstable";
|
inputs.niri-unstable.follows = "niri-unstable";
|
||||||
};
|
};
|
||||||
matugen = {
|
matugen = {
|
||||||
url = "github:/InioX/matugen/main";
|
url = "github:/InioX/matugen/v4.0.0";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
noctalia = {
|
noctalia = {
|
||||||
|
|
@ -65,21 +60,23 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
pipethon.url = "git+ssh://forgejo@git.donsz.nl/jana/pipethon.git";
|
pipethon.url = "git+ssh://forgejo@git.donsz.nl/jana/pipethon.git";
|
||||||
|
firefox-addons = {
|
||||||
|
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
firefox-sidebar-css = {
|
firefox-sidebar-css = {
|
||||||
url = "github:drannex/FirefoxSidebar";
|
url = "github:drannex/FirefoxSidebar";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
raw-data.url = "git+ssh://forgejo@git.donsz.nl/jana/raw-data.git";
|
|
||||||
};
|
};
|
||||||
outputs =
|
outputs =
|
||||||
{
|
{
|
||||||
self,
|
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
colmena,
|
|
||||||
flake-utils,
|
flake-utils,
|
||||||
sops-nix,
|
sops-nix,
|
||||||
vpn-confinement,
|
vpn-confinement,
|
||||||
home-manager,
|
deploy-rs,
|
||||||
...
|
...
|
||||||
}@inputs:
|
}@inputs:
|
||||||
let
|
let
|
||||||
|
|
@ -95,61 +92,40 @@
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
configs = import ./config.nix (inputs // { inherit pkgsForSystem; });
|
||||||
in
|
in
|
||||||
{
|
(configs.configs [
|
||||||
colmenaHive = colmena.lib.makeHive self.outputs.colmena;
|
{
|
||||||
|
hostname = "fili";
|
||||||
colmena = {
|
capabilities = [ "cli" ];
|
||||||
meta =
|
type = "server";
|
||||||
let
|
extra-modules = [
|
||||||
system = "x86_64-linux";
|
sops-nix.nixosModules.sops
|
||||||
in
|
vpn-confinement.nixosModules.default
|
||||||
{
|
];
|
||||||
nixpkgs = pkgsForSystem system;
|
}
|
||||||
specialArgs = {
|
{
|
||||||
flakes = inputs;
|
hostname = "kili";
|
||||||
inherit inputs;
|
deploy-hostname = "localhost";
|
||||||
inherit (inputs.secrets.packages.${system}) secrets;
|
capabilities = [
|
||||||
};
|
"cli"
|
||||||
};
|
"graphical"
|
||||||
|
"work"
|
||||||
fili = {
|
"fun"
|
||||||
deployment = {
|
];
|
||||||
targetHost = "donsz.nl";
|
type = "pc";
|
||||||
targetPort = 22;
|
}
|
||||||
replaceUnknownProfiles = false;
|
{
|
||||||
tags = [ "server" ];
|
hostname = "ragdoll";
|
||||||
# buildOnTarget = true;
|
deploy-hostname = "ragdoll";
|
||||||
targetUser = "jana";
|
home-only = "jana";
|
||||||
};
|
capabilities = [
|
||||||
|
"cli"
|
||||||
imports = [
|
"work"
|
||||||
home-manager.nixosModules.home-manager
|
];
|
||||||
./hosts/fili/configuration.nix
|
type = "pc";
|
||||||
./users
|
}
|
||||||
./default-machine-config.nix
|
])
|
||||||
sops-nix.nixosModules.sops
|
|
||||||
vpn-confinement.nixosModules.default
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
kili = {
|
|
||||||
deployment = {
|
|
||||||
allowLocalDeployment = true;
|
|
||||||
targetHost = null;
|
|
||||||
replaceUnknownProfiles = false;
|
|
||||||
tags = [ "laptop" ];
|
|
||||||
# buildOnTarget = true;
|
|
||||||
targetUser = "jana";
|
|
||||||
};
|
|
||||||
imports = [
|
|
||||||
home-manager.nixosModules.home-manager
|
|
||||||
./hosts/kili/configuration.nix
|
|
||||||
./users
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
// flake-utils.lib.eachDefaultSystem (
|
// flake-utils.lib.eachDefaultSystem (
|
||||||
system:
|
system:
|
||||||
let
|
let
|
||||||
|
|
@ -159,17 +135,27 @@
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
lix
|
lix
|
||||||
colmena.packages.${system}.colmena
|
|
||||||
(pkgs.writeShellScriptBin "apply" ''
|
|
||||||
colmena apply --no-substitute
|
|
||||||
'')
|
|
||||||
(pkgs.writeShellScriptBin "apply-local" ''
|
(pkgs.writeShellScriptBin "apply-local" ''
|
||||||
colmena apply-local --sudo
|
apply $(hostname)
|
||||||
'')
|
'')
|
||||||
|
(pkgs.writeShellScriptBin "apply" ''
|
||||||
|
set -e
|
||||||
|
if [ $# -eq 0 ]
|
||||||
|
then
|
||||||
|
deploy -s
|
||||||
|
elif [ $# -eq 1 ]
|
||||||
|
then
|
||||||
|
deploy -s ".#$@"
|
||||||
|
else
|
||||||
|
echo "too many parameters"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
'')
|
||||||
|
deploy-rs.packages.${system}.deploy-rs
|
||||||
];
|
];
|
||||||
shellHook = "exec $NIX_BUILD_SHELL";
|
shellHook = "exec $NIX_BUILD_SHELL";
|
||||||
};
|
};
|
||||||
packages = custom pkgs;
|
custom-packages = custom pkgs;
|
||||||
formatter = pkgs.nixfmt;
|
formatter = pkgs.nixfmt;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -6,13 +6,6 @@ _: {
|
||||||
./services
|
./services
|
||||||
];
|
];
|
||||||
|
|
||||||
custom.machine = {
|
|
||||||
type = "server";
|
|
||||||
capabilities = [
|
|
||||||
"cli"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
networking.nameservers = [
|
networking.nameservers = [
|
||||||
"1.1.1.1"
|
"1.1.1.1"
|
||||||
"9.9.9.9"
|
"9.9.9.9"
|
||||||
|
|
@ -50,4 +43,6 @@ _: {
|
||||||
"media"
|
"media"
|
||||||
"nginx"
|
"nginx"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
users.groups.media = { };
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,7 @@ let
|
||||||
};
|
};
|
||||||
privateUsers = "no";
|
privateUsers = "no";
|
||||||
|
|
||||||
config =
|
imports =
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
|
|
||||||
|
|
@ -150,7 +150,7 @@
|
||||||
wget
|
wget
|
||||||
|
|
||||||
# used in deployments
|
# used in deployments
|
||||||
flakes.colmena.defaultPackage."x86_64-linux"
|
# flakes.deploy.defaultPackage."x86_64-linux"
|
||||||
lix
|
lix
|
||||||
openssh
|
openssh
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -68,10 +68,21 @@
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
server.externalDomain = "https://photos.donsz.nl";
|
server.externalDomain = "https://photos.donsz.nl";
|
||||||
logging.level = "verbose";
|
logging.level = "log";
|
||||||
|
|
||||||
passwordLogin.enabled = false;
|
passwordLogin.enabled = false;
|
||||||
|
|
||||||
|
storageTemplate = {
|
||||||
|
enabled = true;
|
||||||
|
# year / album name or "Other" / y m d / filename
|
||||||
|
template = "{{y}}/{{#if album}}{{album}}{{else}}Other{{/if}}/{{y}}-{{MM}}-{{dd}}/{{filename}}";
|
||||||
|
hashVerificationEnabled = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
reverseGeocoding = {
|
||||||
|
enabled = true;
|
||||||
|
};
|
||||||
|
|
||||||
oauth = {
|
oauth = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
|
|
||||||
|
|
@ -84,10 +95,7 @@
|
||||||
roleClaim = "immich_role";
|
roleClaim = "immich_role";
|
||||||
scope = "openid email profile groups";
|
scope = "openid email profile groups";
|
||||||
tokenEndpointAuthMethod = "client_secret_post";
|
tokenEndpointAuthMethod = "client_secret_post";
|
||||||
# storageLabelClaim: "",
|
storageLabelClaim = "preferred_username";
|
||||||
# "mobileOverrideEnabled": false,
|
|
||||||
# "mobileRedirectUri": "",
|
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
mediaLocation = "/storage/storage/media-server/photos";
|
mediaLocation = "/storage/storage/media-server/photos";
|
||||||
|
|
|
||||||
|
|
@ -259,7 +259,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services.grafana = {
|
services.grafana = {
|
||||||
enable = true;
|
enable = false;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
server = {
|
server = {
|
||||||
|
|
|
||||||
|
|
@ -6,19 +6,9 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../default-machine-config.nix
|
./kanata.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
custom.machine = {
|
|
||||||
type = "pc";
|
|
||||||
capabilities = [
|
|
||||||
"cli"
|
|
||||||
"graphical"
|
|
||||||
"work"
|
|
||||||
"fun"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
|
@ -52,6 +42,7 @@
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"networkmanager"
|
"networkmanager"
|
||||||
"wheel"
|
"wheel"
|
||||||
|
"docker"
|
||||||
];
|
];
|
||||||
packages = with pkgs; [ ];
|
packages = with pkgs; [ ];
|
||||||
};
|
};
|
||||||
|
|
@ -61,6 +52,8 @@
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
gcc
|
||||||
|
docker
|
||||||
|
|
||||||
firefox
|
firefox
|
||||||
kitty
|
kitty
|
||||||
|
|
@ -87,8 +80,13 @@
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
) { })
|
) { })
|
||||||
|
|
||||||
|
config.boot.kernelPackages.perf
|
||||||
|
rr
|
||||||
];
|
];
|
||||||
|
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
|
||||||
services.xserver.enable = true;
|
services.xserver.enable = true;
|
||||||
services.displayManager.gdm.enable = true;
|
services.displayManager.gdm.enable = true;
|
||||||
services.desktopManager.gnome.enable = true;
|
services.desktopManager.gnome.enable = true;
|
||||||
|
|
@ -157,6 +155,13 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.steam = {
|
||||||
|
enable = true;
|
||||||
|
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||||
|
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
||||||
|
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
|
||||||
|
};
|
||||||
|
|
||||||
# programs.mtr.enable = true;
|
# programs.mtr.enable = true;
|
||||||
# programs.gnupg.agent = {
|
# programs.gnupg.agent = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,28 +1,44 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
boot.initrd.availableKernelModules = [
|
||||||
|
"xhci_pci"
|
||||||
|
"thunderbolt"
|
||||||
|
"nvme"
|
||||||
|
"usbhid"
|
||||||
|
"usb_storage"
|
||||||
|
"sd_mod"
|
||||||
|
"rtsx_pci_sdmmc"
|
||||||
|
];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/4919727e-d114-4d57-b206-522b5df5fccc";
|
device = "/dev/disk/by-uuid/4919727e-d114-4d57-b206-522b5df5fccc";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{ device = "/dev/disk/by-uuid/26CD-373C";
|
device = "/dev/disk/by-uuid/26CD-373C";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [
|
||||||
};
|
"fmask=0077"
|
||||||
|
"dmask=0077"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
|
|
|
||||||
13
hosts/kili/kanata.nix
Normal file
13
hosts/kili/kanata.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
# TODO: make kanata system pkgs only
|
||||||
|
users.groups.uinput = { };
|
||||||
|
users.extraUsers.jana.extraGroups = [
|
||||||
|
"uinput"
|
||||||
|
"input"
|
||||||
|
];
|
||||||
|
environment.systemPackages = [ pkgs.kanata-with-cmd ];
|
||||||
|
services.udev.extraRules = ''
|
||||||
|
KERNEL=="uinput", MODE="0660", GROUP="uinput", OPTIONS+="static_node=uinput"
|
||||||
|
'';
|
||||||
|
}
|
||||||
7
hosts/ragdoll/configuration.nix
Normal file
7
hosts/ragdoll/configuration.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
imports = [ ];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib;
|
|
||||||
{
|
|
||||||
options = {
|
|
||||||
custom.home-info = mkOption {
|
|
||||||
type = types.submodule {
|
|
||||||
options = {
|
|
||||||
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib;
|
|
||||||
{
|
|
||||||
options = {
|
|
||||||
custom.machine = mkOption {
|
|
||||||
type = types.submodule {
|
|
||||||
options = {
|
|
||||||
type = mkOption {
|
|
||||||
type = types.enum [
|
|
||||||
"server"
|
|
||||||
"pc"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
capabilities = mkOption {
|
|
||||||
type = types.listOf (types.enum (import ./capabilities.nix));
|
|
||||||
default = [ "cli" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
inputs@{
|
||||||
lib,
|
lib,
|
||||||
options,
|
options,
|
||||||
|
machine,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
|
|
@ -8,28 +9,16 @@ with lib;
|
||||||
options = {
|
options = {
|
||||||
custom.program = mkOption {
|
custom.program = mkOption {
|
||||||
type = types.attrsOf (
|
type = types.attrsOf (
|
||||||
types.submodule (
|
types.submodule (_: {
|
||||||
{ config, ... }:
|
options = {
|
||||||
{
|
name = mkOption {
|
||||||
options = {
|
type = types.string;
|
||||||
name = mkOption {
|
|
||||||
type = types.string;
|
|
||||||
};
|
|
||||||
requirements = mkOption {
|
|
||||||
type = types.listOf (types.enum (import ./capabilities.nix));
|
|
||||||
default = [ "cli" ];
|
|
||||||
};
|
|
||||||
home-config = mkOption {
|
|
||||||
type = types.deferredModule;
|
|
||||||
};
|
|
||||||
system-config = mkOption {
|
|
||||||
# type = types.attrs;
|
|
||||||
type = types.deferredModule;
|
|
||||||
default = { };
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
defered-config = mkOption {
|
||||||
)
|
type = types.deferredModule;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
})
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,30 +1,31 @@
|
||||||
{
|
args@{
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
config,
|
config,
|
||||||
|
machine,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.custom.users;
|
cfg = config.custom.users;
|
||||||
machine = config.custom.machine;
|
inherit (machine) home-only;
|
||||||
|
inherit (machine) stateVersion;
|
||||||
|
|
||||||
valid-on-machine =
|
valid-on-machine =
|
||||||
on:
|
on:
|
||||||
# TODO: iterate over possibilities
|
# TODO: iterate over possibilities
|
||||||
if machine.type == "server" then
|
(
|
||||||
on.server
|
if machine.type == "server" then
|
||||||
else if machine.type == "pc" then
|
on.server
|
||||||
on.pc
|
else if machine.type == "pc" then
|
||||||
else
|
on.pc
|
||||||
false;
|
else
|
||||||
matches-capabilities =
|
false
|
||||||
# all requirements are contained in the machine capabilities
|
);
|
||||||
requirements: lib.all (req: builtins.elem req machine.capabilities) requirements;
|
|
||||||
users = lib.filterAttrs (_: value: valid-on-machine value.on) cfg;
|
users = lib.filterAttrs (_: value: valid-on-machine value.on) cfg;
|
||||||
home-users = lib.filterAttrs (_: value: value.apply-home-configs) users;
|
home-users = lib.filterAttrs (_: value: value.apply-home-configs) users;
|
||||||
stateVersion = config.system.stateVersion;
|
|
||||||
programs = lib.attrsets.attrValues config.custom.program;
|
programs = lib.attrsets.attrValues config.custom.program;
|
||||||
valid-programs = builtins.filter (program: matches-capabilities program.requirements) programs;
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options =
|
options =
|
||||||
|
|
@ -75,35 +76,47 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkMerge ([
|
config = lib.mkMerge [
|
||||||
{
|
(
|
||||||
users.extraUsers = lib.mapAttrs (name: value: {
|
if (!builtins.isNull home-only) then
|
||||||
isNormalUser = true;
|
lib.mkMerge ([
|
||||||
extraGroups = value.groups;
|
|
||||||
openssh.authorizedKeys.keys = value.keys;
|
|
||||||
shell = value.shell;
|
|
||||||
description = name;
|
|
||||||
}) users;
|
|
||||||
home-manager.users = lib.mapAttrs (
|
|
||||||
name: value:
|
|
||||||
(
|
|
||||||
{ pkgs, lib, ... }:
|
|
||||||
{
|
{
|
||||||
imports = (
|
|
||||||
[
|
|
||||||
./home-info.nix
|
|
||||||
]
|
|
||||||
++ (map (program: program.home-config) valid-programs)
|
|
||||||
);
|
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
inherit stateVersion;
|
inherit stateVersion;
|
||||||
username = name;
|
username = toString home-only;
|
||||||
homeDirectory = "/home/${name}";
|
homeDirectory = "/home/${toString home-only}";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
# ++ map (program: program.home-config) programs
|
||||||
)
|
)
|
||||||
) home-users;
|
else
|
||||||
}
|
(lib.mkMerge ([
|
||||||
]);
|
{
|
||||||
|
users.extraUsers = lib.mapAttrs (name: value: {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = value.groups;
|
||||||
|
openssh.authorizedKeys.keys = value.keys;
|
||||||
|
inherit (value) shell;
|
||||||
|
description = name;
|
||||||
|
}) users;
|
||||||
|
home-manager.users = lib.mapAttrs (
|
||||||
|
name: value:
|
||||||
|
(_: {
|
||||||
|
imports = (
|
||||||
|
[
|
||||||
|
]
|
||||||
|
++ (map (program: program.defered-config) programs)
|
||||||
|
);
|
||||||
|
home = {
|
||||||
|
inherit stateVersion;
|
||||||
|
username = name;
|
||||||
|
homeDirectory = "/home/${name}";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
) home-users;
|
||||||
|
}
|
||||||
|
]))
|
||||||
|
)
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Ptmux;_Gq=2,a=d,d=a\\
|
|
||||||
|
|
@ -1,257 +1,241 @@
|
||||||
_: {
|
{ machine, lib, ... }@inputs:
|
||||||
imports = [
|
{
|
||||||
./nvim
|
|
||||||
./fish
|
|
||||||
./kanata
|
|
||||||
./kitty
|
|
||||||
./tmux
|
|
||||||
./git
|
|
||||||
./jj
|
|
||||||
./niri
|
|
||||||
./zed
|
|
||||||
./firefox
|
|
||||||
];
|
|
||||||
|
|
||||||
custom.program.graphcial-packages = {
|
imports = lib.concatLists [
|
||||||
requirements = [ "graphical" ];
|
[
|
||||||
home-config =
|
./xdg.nix
|
||||||
{ pkgs, ... }:
|
./nvim
|
||||||
{
|
./fish
|
||||||
home.packages = with pkgs; [
|
./kanata
|
||||||
spotify
|
./kitty
|
||||||
obsidian
|
./tmux
|
||||||
element-desktop
|
./git
|
||||||
chromium
|
./jj
|
||||||
bind.dnsutils
|
./niri
|
||||||
mpv
|
./zed
|
||||||
vlc
|
./firefox
|
||||||
];
|
]
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
custom.program.discord = {
|
(machine.program {
|
||||||
requirements = [ "graphical" ];
|
name = "graphcial-packages";
|
||||||
home-config =
|
inherit inputs;
|
||||||
{
|
requirements = [ "graphical" ];
|
||||||
config,
|
home-config =
|
||||||
pkgs,
|
{ pkgs, ... }:
|
||||||
lib,
|
{
|
||||||
...
|
home.packages = with pkgs; [
|
||||||
}:
|
spotify
|
||||||
let
|
obsidian
|
||||||
disableFeatures = [
|
element-desktop
|
||||||
"WebRtcAllowInputVolumeAdjustment"
|
# chromium
|
||||||
"ChromeWideEchoCancellation"
|
bind.dnsutils
|
||||||
];
|
mpv
|
||||||
enableFeatures = [ ];
|
vlc
|
||||||
commandLineArgs =
|
libreoffice-qt
|
||||||
lib.optionals (enableFeatures != [ ]) [
|
hunspell
|
||||||
"--enable-features=${lib.concatStringsSep "," enableFeatures}"
|
hunspellDicts.en_US
|
||||||
]
|
|
||||||
++ lib.optionals (disableFeatures != [ ]) [
|
|
||||||
"--disable-features=${lib.concatStringsSep "," disableFeatures}"
|
|
||||||
];
|
];
|
||||||
joinedArgs = lib.concatStringsSep " " commandLineArgs;
|
};
|
||||||
in
|
})
|
||||||
{
|
|
||||||
home.file."${config.xdg.configHome}/discord/settings.json".source = pkgs.writeText "settings.json" (
|
|
||||||
lib.strings.toJSON (
|
|
||||||
let
|
|
||||||
endpoint = "https://inject.shelter.uwu.network/shelter+yt_ad_block+yt_embed_fix";
|
|
||||||
in
|
|
||||||
{
|
|
||||||
SKIP_HOST_UPDATE = true;
|
|
||||||
MINIMIZE_TO_TRAY = false;
|
|
||||||
OPEN_ON_STARTUP = false;
|
|
||||||
DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING = true;
|
|
||||||
enableHardwareAcceleration = true;
|
|
||||||
UPDATE_ENDPOINT = endpoint;
|
|
||||||
NEW_UPDATE_ENDPOINT = "${endpoint}/";
|
|
||||||
BACKGROUND_COLOR = "#2c2d32";
|
|
||||||
|
|
||||||
openasar = {
|
(machine.program {
|
||||||
setup = true;
|
name = "discord";
|
||||||
# using the performance preset breaks vaapi
|
inherit inputs;
|
||||||
cmdPreset = "balanced";
|
requirements = [ "graphical" ];
|
||||||
# quickstart is buggy and breaks discord sometimes.
|
home-config =
|
||||||
quickstart = false;
|
{
|
||||||
# this css is made for discord compact mode. if you're not using that, stuff won't align!!
|
config,
|
||||||
css =
|
pkgs,
|
||||||
# css
|
lib,
|
||||||
''
|
...
|
||||||
/* Hide nitro begging */
|
}:
|
||||||
@import url("https://raw.codeberg.page/AllPurposeMat/Disblock-Origin/DisblockOrigin.theme.css");
|
let
|
||||||
|
disableFeatures = [
|
||||||
|
"WebRtcAllowInputVolumeAdjustment"
|
||||||
|
"ChromeWideEchoCancellation"
|
||||||
|
];
|
||||||
|
enableFeatures = [ ];
|
||||||
|
commandLineArgs =
|
||||||
|
lib.optionals (enableFeatures != [ ]) [
|
||||||
|
"--enable-features=${lib.concatStringsSep "," enableFeatures}"
|
||||||
|
]
|
||||||
|
++ lib.optionals (disableFeatures != [ ]) [
|
||||||
|
"--disable-features=${lib.concatStringsSep "," disableFeatures}"
|
||||||
|
];
|
||||||
|
joinedArgs = lib.concatStringsSep " " commandLineArgs;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
home.file."${config.xdg.configHome}/discord/settings.json".source = pkgs.writeText "settings.json" (
|
||||||
|
lib.strings.toJSON (
|
||||||
|
let
|
||||||
|
endpoint = "https://inject.shelter.uwu.network/shelter+yt_ad_block+yt_embed_fix";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
SKIP_HOST_UPDATE = true;
|
||||||
|
MINIMIZE_TO_TRAY = false;
|
||||||
|
OPEN_ON_STARTUP = false;
|
||||||
|
DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING = true;
|
||||||
|
enableHardwareAcceleration = true;
|
||||||
|
UPDATE_ENDPOINT = endpoint;
|
||||||
|
NEW_UPDATE_ENDPOINT = "${endpoint}/";
|
||||||
|
BACKGROUND_COLOR = "#2c2d32";
|
||||||
|
|
||||||
/* Hide the Visual Refresh title bar */
|
openasar = {
|
||||||
.visual-refresh {
|
setup = true;
|
||||||
/* Hide the bar itself */
|
# using the performance preset breaks vaapi
|
||||||
--custom-app-top-bar-height: 0px !important;
|
cmdPreset = "balanced";
|
||||||
|
# quickstart is buggy and breaks discord sometimes.
|
||||||
|
quickstart = false;
|
||||||
|
# this css is made for discord compact mode. if you're not using that, stuff won't align!!
|
||||||
|
css =
|
||||||
|
# css
|
||||||
|
''
|
||||||
|
/* Hide nitro begging */
|
||||||
|
@import url("https://raw.codeberg.page/AllPurposeMat/Disblock-Origin/DisblockOrigin.theme.css");
|
||||||
|
|
||||||
/* Title bar buttons are still visible so hide them too */
|
/* Hide the Visual Refresh title bar */
|
||||||
div.base__5e434 > div.bar_c38106 {
|
.visual-refresh {
|
||||||
display: none;
|
/* Hide the bar itself */
|
||||||
|
--custom-app-top-bar-height: 0px !important;
|
||||||
|
|
||||||
|
/* Title bar buttons are still visible so hide them too */
|
||||||
|
div.base__5e434 > div.bar_c38106 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bring the server list down a few pixels */
|
||||||
|
ul[data-list-id="guildsnav"] > div.itemsContainer_ef3116 {
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Bring the server list down a few pixels */
|
:root {
|
||||||
ul[data-list-id="guildsnav"] > div.itemsContainer_ef3116 {
|
/* Disblock settings */
|
||||||
margin-top: 8px;
|
--display-clan-tags: none;
|
||||||
|
--display-active-now: none;
|
||||||
|
--display-hover-reaction-emoji: none;
|
||||||
|
--bool-show-name-gradients: false;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
/* Make "Read All" vencord button text smaller */
|
||||||
/* Disblock settings */
|
button.vc-ranb-button {
|
||||||
--display-clan-tags: none;
|
font-size: 9.5pt;
|
||||||
--display-active-now: none;
|
font-weight: normal;
|
||||||
--display-hover-reaction-emoji: none;
|
}
|
||||||
--bool-show-name-gradients: false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Make "Read All" vencord button text smaller */
|
/* Hide Discover button */
|
||||||
button.vc-ranb-button {
|
div[data-list-item-id="guildsnav___guild-discover-button"] {
|
||||||
font-size: 9.5pt;
|
display: none !important;
|
||||||
font-weight: normal;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* Hide Discover button */
|
/* Hide voice settings menus in user panel */
|
||||||
div[data-list-item-id="guildsnav___guild-discover-button"] {
|
div[class^="micButtonParent__"] button[role="switch"] {
|
||||||
display: none !important;
|
border-radius: var(--radius-sm);
|
||||||
}
|
& ~ button { display: none; }
|
||||||
|
}
|
||||||
|
/* Also reduce the gap between the buttons */
|
||||||
|
div.container__37e49 > div.buttons__37e49 {
|
||||||
|
gap: 1px;
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
/* Hide voice settings menus in user panel */
|
home.packages = with pkgs; [
|
||||||
div[class^="micButtonParent__"] button[role="switch"] {
|
(discord.override {
|
||||||
border-radius: var(--radius-sm);
|
# we disable updates in settings.json
|
||||||
& ~ button { display: none; }
|
disableUpdates = false;
|
||||||
}
|
commandLineArgs = joinedArgs;
|
||||||
/* Also reduce the gap between the buttons */
|
withTTS = false;
|
||||||
div.container__37e49 > div.buttons__37e49 {
|
enableAutoscroll = true;
|
||||||
gap: 1px;
|
withOpenASAR = true;
|
||||||
}
|
})
|
||||||
'';
|
];
|
||||||
};
|
|
||||||
}
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
(discord.override {
|
|
||||||
# we disable updates in settings.json
|
|
||||||
disableUpdates = false;
|
|
||||||
commandLineArgs = joinedArgs;
|
|
||||||
withTTS = false;
|
|
||||||
enableAutoscroll = true;
|
|
||||||
withOpenASAR = true;
|
|
||||||
})
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
custom.program.fun-packages = {
|
|
||||||
requirements = [ "fun" ];
|
|
||||||
home-config =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
custom.p1n3appl3.tab
|
|
||||||
prismlauncher
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
custom.program.cli-packages = {
|
|
||||||
requirements = [ "cli" ];
|
|
||||||
home-config =
|
|
||||||
{ config, pkgs, ... }:
|
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
# general cli tools
|
|
||||||
sops
|
|
||||||
fzf
|
|
||||||
htop
|
|
||||||
ncdu
|
|
||||||
psmisc
|
|
||||||
ripgrep
|
|
||||||
rsync
|
|
||||||
zoxide
|
|
||||||
tmux
|
|
||||||
direnv
|
|
||||||
atuin
|
|
||||||
rcon
|
|
||||||
lix
|
|
||||||
nix-output-monitor
|
|
||||||
wget
|
|
||||||
comma
|
|
||||||
unzip
|
|
||||||
pciutils
|
|
||||||
|
|
||||||
# dev tools
|
|
||||||
gdb
|
|
||||||
clang-tools
|
|
||||||
rustup
|
|
||||||
git
|
|
||||||
python3
|
|
||||||
unixtools.xxd
|
|
||||||
net-tools
|
|
||||||
sqlite-interactive
|
|
||||||
tokei
|
|
||||||
just
|
|
||||||
uv
|
|
||||||
llvmPackages.bintools
|
|
||||||
|
|
||||||
(writeShellScriptBin "nas" ''
|
|
||||||
mkdir -p ~/Documents/nas
|
|
||||||
${sshfs}/bin/sshfs fili:/storage/storage/data/ ~/Documents/nas
|
|
||||||
cd ~/Documents/nas
|
|
||||||
'')
|
|
||||||
];
|
|
||||||
|
|
||||||
# Set up direnv
|
|
||||||
programs.direnv = {
|
|
||||||
package = pkgs.direnv;
|
|
||||||
silent = false;
|
|
||||||
nix-direnv = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.nix-direnv;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
})
|
||||||
|
|
||||||
home.file = {
|
(machine.program {
|
||||||
"${config.xdg.configHome}/sqlite3/sqliterc".source = pkgs.writeText ".sqliterc" ''
|
name = "fun-packages";
|
||||||
.mode box
|
inherit inputs;
|
||||||
'';
|
requirements = [ "fun" ];
|
||||||
|
home-config =
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
custom.p1n3appl3.tab
|
||||||
|
prismlauncher
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
})
|
||||||
};
|
|
||||||
|
|
||||||
custom.program.homedirs = {
|
(machine.program {
|
||||||
home-config =
|
name = "cli-packages";
|
||||||
{ config, ... }:
|
inherit inputs;
|
||||||
{
|
requirements = [ "cli" ];
|
||||||
home.file = {
|
home-config =
|
||||||
"dl".source = config.lib.file.mkOutOfStoreSymlink "${config.xdg.userDirs.download}";
|
{ config, pkgs, ... }:
|
||||||
"doc".source = config.lib.file.mkOutOfStoreSymlink "${config.xdg.userDirs.documents}";
|
{
|
||||||
};
|
home.packages = with pkgs; [
|
||||||
};
|
# general cli tools
|
||||||
};
|
sops
|
||||||
|
fzf
|
||||||
|
htop
|
||||||
|
ncdu
|
||||||
|
psmisc
|
||||||
|
ripgrep
|
||||||
|
rsync
|
||||||
|
zoxide
|
||||||
|
tmux
|
||||||
|
direnv
|
||||||
|
atuin
|
||||||
|
rcon
|
||||||
|
lix
|
||||||
|
nix-output-monitor
|
||||||
|
wget
|
||||||
|
comma
|
||||||
|
unzip
|
||||||
|
pciutils
|
||||||
|
difftastic
|
||||||
|
|
||||||
custom.program.xdg = {
|
# dev tools
|
||||||
home-config =
|
gdb
|
||||||
{ config, ... }:
|
clang-tools
|
||||||
{
|
rustup
|
||||||
xdg = {
|
git
|
||||||
enable = true;
|
python3
|
||||||
|
unixtools.xxd
|
||||||
|
net-tools
|
||||||
|
sqlite-interactive
|
||||||
|
tokei
|
||||||
|
just
|
||||||
|
uv
|
||||||
|
llvmPackages.bintools
|
||||||
|
|
||||||
configHome = "${config.home.homeDirectory}/.config";
|
(writeShellScriptBin "nas" ''
|
||||||
userDirs = {
|
mkdir -p ~/Documents/nas
|
||||||
enable = true;
|
${sshfs}/bin/sshfs fili:/storage/storage/data/ ~/Documents/nas
|
||||||
documents = "${config.home.homeDirectory}/Documents";
|
cd ~/Documents/nas
|
||||||
desktop = "${config.home.homeDirectory}/Documents";
|
'')
|
||||||
download = "${config.home.homeDirectory}/Downloads";
|
];
|
||||||
music = "${config.home.homeDirectory}/Documents/personal/music";
|
|
||||||
pictures = "${config.home.homeDirectory}/Documents/personal/pictures";
|
# Set up direnv
|
||||||
|
programs.direnv = {
|
||||||
|
package = pkgs.direnv;
|
||||||
|
silent = false;
|
||||||
|
nix-direnv = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.nix-direnv;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
mime.enable = true;
|
home.file = {
|
||||||
|
"${config.xdg.configHome}/sqlite3/sqliterc".source = pkgs.writeText ".sqliterc" ''
|
||||||
|
.mode box
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
})
|
||||||
};
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,165 +1,170 @@
|
||||||
_: {
|
inputs@{ machine, ... }:
|
||||||
custom.program.firefox.requirements = [ "graphical" ];
|
{
|
||||||
custom.program.firefox.home-config =
|
imports = machine.program {
|
||||||
{
|
name = "firefox";
|
||||||
config,
|
inherit inputs;
|
||||||
flakes,
|
requirements = [ "graphical" ];
|
||||||
pkgs,
|
home-config =
|
||||||
...
|
{
|
||||||
}:
|
config,
|
||||||
let
|
flakes,
|
||||||
ff-pkgs = flakes.firefox-addons.packages.${pkgs.system};
|
pkgs,
|
||||||
lock-false = {
|
...
|
||||||
Value = false;
|
}:
|
||||||
Status = "locked";
|
let
|
||||||
};
|
ff-pkgs = flakes.firefox-addons.packages.${pkgs.system};
|
||||||
# lock-true = {
|
lock-false = {
|
||||||
# Value = true;
|
Value = false;
|
||||||
# Status = "locked";
|
Status = "locked";
|
||||||
# };
|
|
||||||
in
|
|
||||||
{
|
|
||||||
programs.firefox = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.wrapFirefox pkgs.firefox-unwrapped {
|
|
||||||
extraPolicies = {
|
|
||||||
DisableFormHistory = true;
|
|
||||||
OfferToSaveLogins = false;
|
|
||||||
PasswordManagerEnabled = false;
|
|
||||||
AppAutoUpdate = false;
|
|
||||||
DisableFirefoxStudies = true;
|
|
||||||
DisablePocket = true;
|
|
||||||
DisableTelemetry = true;
|
|
||||||
UserMessaging = {
|
|
||||||
WhatsNew = true;
|
|
||||||
ExtensionRecommendations = false;
|
|
||||||
FeatureRecommendations = false;
|
|
||||||
UrlbarInterventions = false;
|
|
||||||
SkipOnboarding = true;
|
|
||||||
MoreFromMozilla = false;
|
|
||||||
Locked = true;
|
|
||||||
};
|
|
||||||
FirefoxHome = {
|
|
||||||
Search = true;
|
|
||||||
TopSites = false;
|
|
||||||
SponsoredTopSites = false;
|
|
||||||
Highlights = false;
|
|
||||||
Pocket = false;
|
|
||||||
SponsoredPocket = false;
|
|
||||||
Snippets = false;
|
|
||||||
Locked = false;
|
|
||||||
};
|
|
||||||
FirefoxSuggest = {
|
|
||||||
WebSuggestions = false;
|
|
||||||
SponsoredSuggestions = false;
|
|
||||||
ImproveSuggest = false;
|
|
||||||
Locked = true;
|
|
||||||
};
|
|
||||||
# TODO: https://github.com/TheRealGramdalf/nixos/blob/83f4339b121175f47940314bf5811080ac42c316/users/games/firefox/privacy.nix
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
# lock-true = {
|
||||||
|
# Value = true;
|
||||||
|
# Status = "locked";
|
||||||
|
# };
|
||||||
|
in
|
||||||
|
{
|
||||||
|
programs.firefox = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.wrapFirefox pkgs.firefox-unwrapped {
|
||||||
|
extraPolicies = {
|
||||||
|
DisableFormHistory = true;
|
||||||
|
OfferToSaveLogins = false;
|
||||||
|
PasswordManagerEnabled = false;
|
||||||
|
AppAutoUpdate = false;
|
||||||
|
DisableFirefoxStudies = true;
|
||||||
|
DisablePocket = true;
|
||||||
|
DisableTelemetry = true;
|
||||||
|
UserMessaging = {
|
||||||
|
WhatsNew = true;
|
||||||
|
ExtensionRecommendations = false;
|
||||||
|
FeatureRecommendations = false;
|
||||||
|
UrlbarInterventions = false;
|
||||||
|
SkipOnboarding = true;
|
||||||
|
MoreFromMozilla = false;
|
||||||
|
Locked = true;
|
||||||
|
};
|
||||||
|
FirefoxHome = {
|
||||||
|
Search = true;
|
||||||
|
TopSites = false;
|
||||||
|
SponsoredTopSites = false;
|
||||||
|
Highlights = false;
|
||||||
|
Pocket = false;
|
||||||
|
SponsoredPocket = false;
|
||||||
|
Snippets = false;
|
||||||
|
Locked = false;
|
||||||
|
};
|
||||||
|
FirefoxSuggest = {
|
||||||
|
WebSuggestions = false;
|
||||||
|
SponsoredSuggestions = false;
|
||||||
|
ImproveSuggest = false;
|
||||||
|
Locked = true;
|
||||||
|
};
|
||||||
|
# TODO: https://github.com/TheRealGramdalf/nixos/blob/83f4339b121175f47940314bf5811080ac42c316/users/games/firefox/privacy.nix
|
||||||
|
};
|
||||||
|
|
||||||
profiles.default = {
|
|
||||||
id = 0;
|
|
||||||
name = "profile_0";
|
|
||||||
isDefault = true;
|
|
||||||
settings = {
|
|
||||||
# specify profile-specific preferences here; check about:config for options
|
|
||||||
"browser.newtabpage.activity-stream.feeds.section.highlights" = false;
|
|
||||||
"browser.startup.page" = 3; # Restore previous tabs
|
|
||||||
"extensions.autoDisableScopes" = 0;
|
|
||||||
"extensions.pocket.enabled" = lock-false;
|
|
||||||
"browser.tabs.closeWindowWithLastTab" = lock-false;
|
|
||||||
"sidebar.position_start" = false; # sidebar on the right
|
|
||||||
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
|
||||||
"browser.toolbars.bookmarks.visibility" = "always";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
userChrome = builtins.readFile ./userChrome.css;
|
profiles.default = {
|
||||||
userContent = builtins.readFile ./userChrome.css;
|
id = 0;
|
||||||
|
name = "profile_0";
|
||||||
|
isDefault = true;
|
||||||
|
settings = {
|
||||||
|
# specify profile-specific preferences here; check about:config for options
|
||||||
|
"browser.newtabpage.activity-stream.feeds.section.highlights" = false;
|
||||||
|
"browser.startup.page" = 3; # Restore previous tabs
|
||||||
|
"extensions.autoDisableScopes" = 0;
|
||||||
|
"extensions.pocket.enabled" = lock-false;
|
||||||
|
"browser.tabs.closeWindowWithLastTab" = lock-false;
|
||||||
|
"sidebar.position_start" = false; # sidebar on the right
|
||||||
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||||
|
"browser.toolbars.bookmarks.visibility" = "always";
|
||||||
|
};
|
||||||
|
|
||||||
extensions.packages = with ff-pkgs; [
|
userChrome = builtins.readFile ./userChrome.css;
|
||||||
bitwarden
|
userContent = builtins.readFile ./userChrome.css;
|
||||||
ublock-origin
|
|
||||||
sidebery
|
|
||||||
sponsorblock
|
|
||||||
# vimium
|
|
||||||
];
|
|
||||||
|
|
||||||
bookmarks = {
|
extensions.packages = with ff-pkgs; [
|
||||||
force = true;
|
bitwarden
|
||||||
settings = [
|
ublock-origin
|
||||||
{
|
sidebery
|
||||||
keyword = "!w";
|
sponsorblock
|
||||||
url = "https://www.wikipedia.org/w/index.php?title=Special:Search&search=%s";
|
# vimium
|
||||||
}
|
|
||||||
{
|
|
||||||
keyword = "!m";
|
|
||||||
url = "https://www.google.com/maps?q=%s";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
keyword = "!git";
|
|
||||||
url = "https://github.com/search?q=%s&type=code";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
keyword = "!std";
|
|
||||||
url = "https://std.rs%s";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
keyword = "!rust";
|
|
||||||
url = "https://docs.rs/releases/search?query=%s";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
keyword = "!np";
|
|
||||||
url = "https://search.nixos.org/packages?query=%s";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
keyword = "!hmo";
|
|
||||||
url = "https://home-manager-options.extranix.com/?query=%s";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
keyword = "!no";
|
|
||||||
url = "https://search.nixos.org/options?query=%s";
|
|
||||||
}
|
|
||||||
|
|
||||||
# {
|
|
||||||
# name = "bank";
|
|
||||||
# toolbar = true;
|
|
||||||
# url = "https://web.bunq.com/user";
|
|
||||||
# }
|
|
||||||
];
|
];
|
||||||
};
|
|
||||||
|
|
||||||
# extensions.settings = {
|
bookmarks = {
|
||||||
# "${ff-pkgs.sidebery.addonId}".settings = {
|
force = true;
|
||||||
# sidebar = {
|
settings = [
|
||||||
# # panels = with builtins; with lib; listToAttrs (map ffContainerToSideberryPanel (attrsToList containers));
|
{
|
||||||
# # nav = [ "Personal" "Programming"];
|
keyword = "!w";
|
||||||
# };
|
url = "https://www.wikipedia.org/w/index.php?title=Special:Search&search=%s";
|
||||||
# # https://github.com/Dash-L/nixconfig/blob/c30f6d1486a3fe2b3793ab0cb13a88edefe83b7a/home/firefox.nix#L82
|
}
|
||||||
# settings = {
|
{
|
||||||
# pinnedTabsPosition = "top";
|
keyword = "!m";
|
||||||
# hideEmptyPanels = false;
|
url = "https://www.google.com/maps?q=%s";
|
||||||
# activateAfterClosing = "prev";
|
}
|
||||||
# activateAfterClosingStayInPanel = true;
|
{
|
||||||
# newTabCtxReopen = true;
|
keyword = "!git";
|
||||||
# };
|
url = "https://github.com/search?q=%s&type=code";
|
||||||
# };
|
}
|
||||||
# };
|
{
|
||||||
|
keyword = "!std";
|
||||||
|
url = "https://std.rs%s";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
keyword = "!rust";
|
||||||
|
url = "https://docs.rs/releases/search?query=%s";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
keyword = "!np";
|
||||||
|
url = "https://search.nixos.org/packages?query=%s";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
keyword = "!hmo";
|
||||||
|
url = "https://home-manager-options.extranix.com/?query=%s";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
keyword = "!no";
|
||||||
|
url = "https://search.nixos.org/options?query=%s";
|
||||||
|
}
|
||||||
|
|
||||||
|
# {
|
||||||
|
# name = "bank";
|
||||||
|
# toolbar = true;
|
||||||
|
# url = "https://web.bunq.com/user";
|
||||||
|
# }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
# extensions.settings = {
|
||||||
|
# "${ff-pkgs.sidebery.addonId}".settings = {
|
||||||
|
# sidebar = {
|
||||||
|
# # panels = with builtins; with lib; listToAttrs (map ffContainerToSideberryPanel (attrsToList containers));
|
||||||
|
# # nav = [ "Personal" "Programming"];
|
||||||
|
# };
|
||||||
|
# # https://github.com/Dash-L/nixconfig/blob/c30f6d1486a3fe2b3793ab0cb13a88edefe83b7a/home/firefox.nix#L82
|
||||||
|
# settings = {
|
||||||
|
# pinnedTabsPosition = "top";
|
||||||
|
# hideEmptyPanels = false;
|
||||||
|
# activateAfterClosing = "prev";
|
||||||
|
# activateAfterClosingStayInPanel = true;
|
||||||
|
# newTabCtxReopen = true;
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
xdg.mimeApps = {
|
||||||
|
defaultApplications."x-scheme-handler/http" = [
|
||||||
|
"firefox.desktop"
|
||||||
|
];
|
||||||
|
defaultApplications."x-scheme-handler/https" = [
|
||||||
|
"firefox.desktop"
|
||||||
|
];
|
||||||
|
defaultApplications."text/html" = [ "firefox.desktop" ];
|
||||||
|
defaultApplications."x-scheme-handler/about" = [ "firefox.desktop" ];
|
||||||
|
defaultApplications."x-scheme-handler/unknown" = [ "firefox.desktop" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
xdg.mimeApps = {
|
|
||||||
defaultApplications."x-scheme-handler/http" = [
|
|
||||||
"firefox.desktop"
|
|
||||||
];
|
|
||||||
defaultApplications."x-scheme-handler/https" = [
|
|
||||||
"firefox.desktop"
|
|
||||||
];
|
|
||||||
defaultApplications."text/html" = [ "firefox.desktop" ];
|
|
||||||
defaultApplications."x-scheme-handler/about" = [ "firefox.desktop" ];
|
|
||||||
defaultApplications."x-scheme-handler/unknown" = [ "firefox.desktop" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,241 +1,260 @@
|
||||||
_: {
|
inputs@{ machine, ... }:
|
||||||
custom.program.fish.requirements = [ "cli" ];
|
{
|
||||||
custom.program.fish.home-config =
|
imports = machine.program {
|
||||||
{
|
name = "fish";
|
||||||
config,
|
inherit inputs;
|
||||||
pkgs,
|
requirements = [ "cli" ];
|
||||||
lib,
|
home-config =
|
||||||
...
|
{
|
||||||
}:
|
config,
|
||||||
with builtins;
|
pkgs,
|
||||||
with lib.attrsets;
|
lib,
|
||||||
let
|
...
|
||||||
scripts = (import ./scripts.nix) pkgs;
|
}:
|
||||||
aliases = with scripts; {
|
with builtins;
|
||||||
"cp-mov" = cp-media "mov" "movies";
|
with lib.attrsets;
|
||||||
"cp-ser" = cp-media "ser" "shows";
|
let
|
||||||
"cp-ani" = cp-media "ani" "anime";
|
scripts = (import ./scripts.nix) pkgs;
|
||||||
"dumpasm" = "${pkgs.custom.dumpasm}/bin/dumpasm";
|
aliases = with scripts; {
|
||||||
"p" = builtins.trace calc calc;
|
"cp-mov" = cp-media "mov" "movies";
|
||||||
"s" = "systemctl";
|
"cp-ser" = cp-media "ser" "shows";
|
||||||
"j" = "journalctl";
|
"cp-ani" = cp-media "ani" "anime";
|
||||||
"ju" = "journalctl -u";
|
"dumpasm" = "${pkgs.custom.dumpasm}/bin/dumpasm";
|
||||||
"jfu" = "journalctl -fu";
|
"p" = builtins.trace calc calc;
|
||||||
"ls" = "${pkgs.eza}/bin/eza --git";
|
"s" = "systemctl";
|
||||||
"ll" = "${pkgs.eza}/bin/eza --git";
|
"j" = "journalctl";
|
||||||
"lt" = "${pkgs.eza}/bin/eza --long --tree -L 3";
|
"ju" = "journalctl -u";
|
||||||
"open" = "${pkgs.xdg-utils}/bin/xdg-open";
|
"jfu" = "journalctl -fu";
|
||||||
"cb" = "${pkgs.wl-clipboard-rs}/bin/wl-copy";
|
"ls" = "${pkgs.eza}/bin/eza --git";
|
||||||
"cat" = "${pkgs.bat}/bin/bat";
|
"ll" = "${pkgs.eza}/bin/eza --git";
|
||||||
|
"lt" = "${pkgs.eza}/bin/eza --long --tree -L 3";
|
||||||
|
"open" = "${pkgs.xdg-utils}/bin/xdg-open";
|
||||||
|
"cb" = "${pkgs.wl-clipboard-rs}/bin/wl-copy";
|
||||||
|
"cat" = "${pkgs.bat}/bin/bat";
|
||||||
|
|
||||||
# "pull" = "${pkgs.git}/bin/git pull";
|
# "pull" = "${pkgs.git}/bin/git pull";
|
||||||
# "push" = "${pkgs.git}/bin/git push";
|
# "push" = "${pkgs.git}/bin/git push";
|
||||||
# "commit" = "${pkgs.git}/bin/git commit";
|
# "commit" = "${pkgs.git}/bin/git commit";
|
||||||
# "add" = "${pkgs.git}/bin/git add";
|
# "add" = "${pkgs.git}/bin/git add";
|
||||||
# "patch" = "${pkgs.git}/bin/git add -p";
|
# "patch" = "${pkgs.git}/bin/git add -p";
|
||||||
# "amend" = "${pkgs.git}/bin/git commit --amend";
|
# "amend" = "${pkgs.git}/bin/git commit --amend";
|
||||||
# "log" = "${pkgs.git}/bin/git log --all --graph --decorate";
|
# "log" = "${pkgs.git}/bin/git log --all --graph --decorate";
|
||||||
# "st" = "${pkgs.git}/bin/git status";
|
# "st" = "${pkgs.git}/bin/git status";
|
||||||
# "checkout" = "${pkgs.git}/bin/git checkout";
|
# "checkout" = "${pkgs.git}/bin/git checkout";
|
||||||
# "rebase" = "${pkgs.git}/bin/git rebase";
|
# "rebase" = "${pkgs.git}/bin/git rebase";
|
||||||
# "stash" = "${pkgs.git}/bin/git stash";
|
# "stash" = "${pkgs.git}/bin/git stash";
|
||||||
|
|
||||||
"edit" = "jj edit";
|
"edit" = "jj edit";
|
||||||
"old" = "jj edit @-";
|
"old" = "jj edit @-";
|
||||||
"new" = "jj edit @+";
|
"new" = "jj edit @+";
|
||||||
"rebase" = "jj rebase";
|
"rebase" = "jj rebase";
|
||||||
"pull" = "jj git fetch; jj catchup";
|
"pull" = "jj git fetch; jj catchup";
|
||||||
"msg" = "jj describe -m";
|
"msg" = "jj describe -m";
|
||||||
"branch" = "jj bookmark set";
|
"branch" = "jj bookmark set";
|
||||||
"stat" = "jj status";
|
"stat" = "jj status";
|
||||||
"push" = "jj git push";
|
"push" = "jj git push";
|
||||||
|
|
||||||
"tidy" = "x test tidy --bless";
|
"tidy" = "x test tidy --bless";
|
||||||
"ui" = "x test tests/ui/";
|
"ui" = "x test tests/ui/";
|
||||||
|
|
||||||
"f" = "nautilus --no-desktop . &";
|
"f" = "nautilus --no-desktop . &";
|
||||||
};
|
};
|
||||||
# extracting any compressed format
|
# extracting any compressed format
|
||||||
extract = ''
|
extract = ''
|
||||||
function extract -a file -d "decompress a file"
|
function extract -a file -d "decompress a file"
|
||||||
if not test -f $file
|
if not test -f $file
|
||||||
echo "'$file' is not a valid file"
|
echo "'$file' is not a valid file"
|
||||||
return 1
|
|
||||||
end
|
|
||||||
switch $file
|
|
||||||
# tar can automatically figure out how to decompress
|
|
||||||
case '*.{tar,tar.{bz2,zst,gz,xz},tbz2,tgz'; ${pkgs.gnutar}/bin/tar xf $file; end
|
|
||||||
case '*.bz2'; bunzip2 $file; end
|
|
||||||
case '*.rar'; unrar e $file; end
|
|
||||||
case '*.gz'; gunzip $file; end
|
|
||||||
case '*.zip'; ${pkgs.unzip}/bin/unzip $file; end
|
|
||||||
case '*.Z'; uncompress $file; end
|
|
||||||
case '*.7z'; 7z x $file; end
|
|
||||||
case '*';
|
|
||||||
echo "'$file' cannot be extracted"
|
|
||||||
return 1
|
return 1
|
||||||
|
end
|
||||||
|
switch $file
|
||||||
|
# tar can automatically figure out how to decompress
|
||||||
|
case '*.{tar,tar.{bz2,zst,gz,xz},tbz2,tgz'; ${pkgs.gnutar}/bin/tar xf $file; end
|
||||||
|
case '*.bz2'; bunzip2 $file; end
|
||||||
|
case '*.rar'; unrar e $file; end
|
||||||
|
case '*.gz'; gunzip $file; end
|
||||||
|
case '*.zip'; ${pkgs.unzip}/bin/unzip $file; end
|
||||||
|
case '*.Z'; uncompress $file; end
|
||||||
|
case '*.7z'; 7z x $file; end
|
||||||
|
case '*';
|
||||||
|
echo "'$file' cannot be extracted"
|
||||||
|
return 1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
'';
|
||||||
'';
|
in
|
||||||
in
|
{
|
||||||
{
|
programs = {
|
||||||
programs = {
|
atuin = {
|
||||||
atuin = {
|
enable = true;
|
||||||
enable = true;
|
enableFishIntegration = true;
|
||||||
enableFishIntegration = true;
|
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
filter_mode_shell_up_key_binding = "workspace";
|
filter_mode_shell_up_key_binding = "workspace";
|
||||||
exit_mode = "return-original";
|
exit_mode = "return-original";
|
||||||
inline_height = 20;
|
inline_height = 20;
|
||||||
workspaces = true;
|
workspaces = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
zoxide = {
|
zoxide = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
direnv = {
|
direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# enableFishIntegration = lib.mkDefault true;
|
# enableFishIntegration = lib.mkDefault true;
|
||||||
};
|
};
|
||||||
|
|
||||||
fzf = {
|
fzf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
fish = {
|
fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shellAliases = aliases;
|
shellAliases = aliases;
|
||||||
plugins = with pkgs.fishPlugins; [
|
plugins = with pkgs.fishPlugins; [
|
||||||
{
|
{
|
||||||
name = "bang-bang";
|
name = "bang-bang";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "oh-my-fish";
|
owner = "oh-my-fish";
|
||||||
repo = "plugin-bang-bang";
|
repo = "plugin-bang-bang";
|
||||||
rev = "ec991b80ba7d4dda7a962167b036efc5c2d79419";
|
rev = "ec991b80ba7d4dda7a962167b036efc5c2d79419";
|
||||||
hash = "sha256-oPPCtFN2DPuM//c48SXb4TrFRjJtccg0YPXcAo0Lxq0=";
|
hash = "sha256-oPPCtFN2DPuM//c48SXb4TrFRjJtccg0YPXcAo0Lxq0=";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "tide";
|
||||||
|
inherit (tide) src;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "sponge";
|
||||||
|
inherit (sponge) src;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "autopair";
|
||||||
|
inherit (autopair) src;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
functions = {
|
||||||
|
fish_jj_prompt = {
|
||||||
|
body = ''
|
||||||
|
if not ${config.programs.jujutsu.package}/bin/jj root --quiet &>/dev/null
|
||||||
|
return 1
|
||||||
|
end
|
||||||
|
|
||||||
|
${config.programs.jujutsu.package}/bin/jj log --ignore-working-copy --no-graph --color always -r @ -T '
|
||||||
|
separate(
|
||||||
|
" ",
|
||||||
|
bookmarks.join(", "),
|
||||||
|
change_id.shortest(),
|
||||||
|
commit_id.shortest(),
|
||||||
|
if(conflict, "conflict"),
|
||||||
|
if(empty, "empty"),
|
||||||
|
if(divergent, "divergent"),
|
||||||
|
if(hidden, "hidden"),
|
||||||
|
)
|
||||||
|
'
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "tide";
|
|
||||||
inherit (tide) src;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "sponge";
|
|
||||||
inherit (sponge) src;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "autopair";
|
|
||||||
inherit (autopair) src;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
functions = {
|
_tide_item_jj = {
|
||||||
fish_jj_prompt = {
|
body = ''
|
||||||
body = ''
|
set -l _tide_item_jj_color $_tide_location_color
|
||||||
if not ${config.programs.jujutsu.package}/bin/jj root --quiet &>/dev/null
|
echo -ns $_tide_item_jj_color" ("(fish_jj_prompt)$_tide_item_jj_color")"
|
||||||
return 1
|
'';
|
||||||
end
|
};
|
||||||
|
|
||||||
${config.programs.jujutsu.package}/bin/jj log --ignore-working-copy --no-graph --color always -r @ -T '
|
_tide_item_git = {
|
||||||
separate(
|
body = ''
|
||||||
" ",
|
if not test -d .jj
|
||||||
bookmarks.join(", "),
|
fish_git_prompt '%s'
|
||||||
change_id.shortest(),
|
end
|
||||||
commit_id.shortest(),
|
'';
|
||||||
if(conflict, "conflict"),
|
};
|
||||||
if(empty, "empty"),
|
|
||||||
if(divergent, "divergent"),
|
|
||||||
if(hidden, "hidden"),
|
|
||||||
)
|
|
||||||
'
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
_tide_item_jj = {
|
interactiveShellInit = ''
|
||||||
body = ''
|
fish_vi_key_bindings
|
||||||
set -l _tide_item_jj_color $_tide_location_color
|
|
||||||
echo -ns $_tide_item_jj_color" ("(fish_jj_prompt)$_tide_item_jj_color")"
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
_tide_item_git = {
|
bind \e\[3\;5~ kill-word
|
||||||
body = ''
|
bind \cH backward-kill-word
|
||||||
if not test -d .jj
|
bind \cV beginning-of-line
|
||||||
fish_git_prompt '%s'
|
bind \f end-of-line
|
||||||
end
|
|
||||||
'';
|
bind -M insert \e\[3\;5~ kill-word
|
||||||
};
|
bind -M insert \cH backward-kill-word
|
||||||
|
bind -M insert \cV beginning-of-line
|
||||||
|
bind -M insert \f end-of-line
|
||||||
|
|
||||||
|
bind \cl 'clear; commandline -f repaint'
|
||||||
|
bind -M insert \cl 'clear; commandline -f repaint'
|
||||||
|
|
||||||
|
set -g sponge_successful_exit_codes 0
|
||||||
|
set -g sponge_allow_previously_successful false
|
||||||
|
set -g sponge_delay 10
|
||||||
|
|
||||||
|
${config.programs.jujutsu.package}/bin/jj util completion fish | source
|
||||||
|
|
||||||
|
# if set -q tide_left_prompt_items; and not contains "jj" $tide_left_prompt_items
|
||||||
|
# set -l tide_item_jj_idx (contains -i "pwd" $tide_left_prompt_items)
|
||||||
|
# if test $tide_item_jj_idx
|
||||||
|
# set tide_left_prompt_items \
|
||||||
|
# $tide_left_prompt_items[1..$tide_item_jj_idx] \
|
||||||
|
# jj \
|
||||||
|
# $tide_left_prompt_items[(math $tide_item_jj_idx + 1)..-1]
|
||||||
|
# end
|
||||||
|
# end
|
||||||
|
|
||||||
|
function t
|
||||||
|
cd "$(${pkgs.custom.t}/bin/t-rs $argv | tail -n 1)"
|
||||||
|
end
|
||||||
|
|
||||||
|
function temp
|
||||||
|
t $argv
|
||||||
|
end
|
||||||
|
|
||||||
|
function rs
|
||||||
|
cd "$(${pkgs.custom.t}/bin/t-rs $argv | tail -n 1)"
|
||||||
|
cargo init . --bin --name $(basename "$PWD")
|
||||||
|
vim src/main.rs
|
||||||
|
end
|
||||||
|
|
||||||
|
fish_add_path "$HOME/.cargo/bin"
|
||||||
|
fish_add_path "$HOME/.local/bin"
|
||||||
|
fish_add_path "$HOME/Documents/scripts"
|
||||||
|
fish_add_path "$HOME/.nix-profile/bin"
|
||||||
|
|
||||||
|
function fish_greeting
|
||||||
|
${pkgs.blahaj}/bin/blahaj -s
|
||||||
|
echo "welcome to $(uname -n), $(whoami)!"
|
||||||
|
end
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
interactiveShellInit = ''
|
home.activation = {
|
||||||
fish_vi_key_bindings
|
setupTide = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
||||||
|
setupTide() {
|
||||||
set -g sponge_successful_exit_codes 0
|
${pkgs.fish}/bin/fish -c ${lib.escapeShellArg "tide configure ${
|
||||||
set -g sponge_allow_previously_successful false
|
lib.cli.toGNUCommandLineShell { } {
|
||||||
set -g sponge_delay 10
|
auto = true;
|
||||||
|
style = "Lean";
|
||||||
${config.programs.jujutsu.package}/bin/jj util completion fish | source
|
prompt_colors = "True color";
|
||||||
|
show_time = "No";
|
||||||
# if set -q tide_left_prompt_items; and not contains "jj" $tide_left_prompt_items
|
lean_prompt_height = "Two lines";
|
||||||
# set -l tide_item_jj_idx (contains -i "pwd" $tide_left_prompt_items)
|
prompt_connection = "Disconnected";
|
||||||
# if test $tide_item_jj_idx
|
prompt_spacing = "Compact";
|
||||||
# set tide_left_prompt_items \
|
icons = "Few icons";
|
||||||
# $tide_left_prompt_items[1..$tide_item_jj_idx] \
|
transient = "Yes";
|
||||||
# jj \
|
}
|
||||||
# $tide_left_prompt_items[(math $tide_item_jj_idx + 1)..-1]
|
}"} >/dev/null 2>&1
|
||||||
# end
|
}
|
||||||
# end
|
setupTide
|
||||||
|
|
||||||
function t
|
|
||||||
cd "$(${pkgs.custom.t}/bin/t-rs $argv | tail -n 1)"
|
|
||||||
end
|
|
||||||
|
|
||||||
function temp
|
|
||||||
t $argv
|
|
||||||
end
|
|
||||||
|
|
||||||
function rs
|
|
||||||
cd "$(${pkgs.custom.t}/bin/t-rs $argv | tail -n 1)"
|
|
||||||
cargo init . --bin --name $(basename "$PWD")
|
|
||||||
vim src/main.rs
|
|
||||||
end
|
|
||||||
|
|
||||||
fish_add_path "$HOME/.cargo/bin"
|
|
||||||
fish_add_path "$HOME/.local/bin"
|
|
||||||
fish_add_path "$HOME/Documents/scripts"
|
|
||||||
fish_add_path "$HOME/.nix-profile/bin"
|
|
||||||
|
|
||||||
function fish_greeting
|
|
||||||
${pkgs.blahaj}/bin/blahaj -s
|
|
||||||
end
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
home.activation = {
|
|
||||||
setupTide = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
|
||||||
setupTide() {
|
|
||||||
${pkgs.fish}/bin/fish -c ${lib.escapeShellArg "tide configure ${
|
|
||||||
lib.cli.toGNUCommandLineShell { } {
|
|
||||||
auto = true;
|
|
||||||
style = "Lean";
|
|
||||||
prompt_colors = "True color";
|
|
||||||
show_time = "No";
|
|
||||||
lean_prompt_height = "Two lines";
|
|
||||||
prompt_connection = "Disconnected";
|
|
||||||
prompt_spacing = "Compact";
|
|
||||||
icons = "Few icons";
|
|
||||||
transient = "Yes";
|
|
||||||
}
|
|
||||||
}"} >/dev/null 2>&1
|
|
||||||
}
|
|
||||||
setupTide
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,39 +1,44 @@
|
||||||
_: {
|
inputs@{ machine, ... }:
|
||||||
custom.program.git.requirements = [ "cli" ];
|
{
|
||||||
custom.program.git.home-config = _: {
|
imports = machine.program {
|
||||||
programs.git = {
|
name = "git";
|
||||||
enable = true;
|
inherit inputs;
|
||||||
signing.key = "/home/jana/.ssh/id_ed25519.pub";
|
requirements = [ "cli" ];
|
||||||
signing.signByDefault = true;
|
home-config = _: {
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
signing.key = "/home/jana/.ssh/id_ed25519.pub";
|
||||||
|
signing.signByDefault = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
user.email = "jana@donsz.nl";
|
user.email = "jana@donsz.nl";
|
||||||
user.name = "Jana Dönszelmann";
|
user.name = "Jana Dönszelmann";
|
||||||
|
|
||||||
push.autoSetupRemote = true;
|
push.autoSetupRemote = true;
|
||||||
pull.rebase = true;
|
pull.rebase = true;
|
||||||
init.defaultBranch = "main";
|
init.defaultBranch = "main";
|
||||||
gpg.format = "ssh";
|
gpg.format = "ssh";
|
||||||
diff.colorMoved = "default";
|
diff.colorMoved = "default";
|
||||||
rerere.enabled = true;
|
rerere.enabled = true;
|
||||||
|
|
||||||
alias.conflicts = "diff --check";
|
alias.conflicts = "diff --check";
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.delta = {
|
|
||||||
enable = true;
|
|
||||||
options = {
|
|
||||||
navigate = true;
|
|
||||||
light = false;
|
|
||||||
side-by-side = true;
|
|
||||||
features = "decorations interactive";
|
|
||||||
interactive = {
|
|
||||||
keep-plus-minus-markers = false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.delta = {
|
||||||
|
enable = true;
|
||||||
|
options = {
|
||||||
|
navigate = true;
|
||||||
|
light = false;
|
||||||
|
side-by-side = true;
|
||||||
|
features = "decorations interactive";
|
||||||
|
interactive = {
|
||||||
|
keep-plus-minus-markers = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
enableGitIntegration = true;
|
||||||
};
|
};
|
||||||
enableGitIntegration = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,193 +1,198 @@
|
||||||
_: {
|
inputs@{ machine, ... }:
|
||||||
custom.program.jujutsu.requirements = [ "cli" ];
|
{
|
||||||
custom.program.jujutsu.home-config =
|
imports = machine.program {
|
||||||
{ config, pkgs, ... }:
|
name = "jujutsu";
|
||||||
{
|
inherit inputs;
|
||||||
programs.jujutsu = {
|
requirements = [ "cli" ];
|
||||||
enable = true;
|
home-config =
|
||||||
# package = pkgs.custom.jujutsu;
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.jujutsu = {
|
||||||
|
enable = true;
|
||||||
|
# package = pkgs.custom.jujutsu;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
user = {
|
user = {
|
||||||
email = config.programs.git.settings.user.email;
|
email = config.programs.git.settings.user.email;
|
||||||
name = config.programs.git.settings.user.name;
|
name = config.programs.git.settings.user.name;
|
||||||
};
|
|
||||||
|
|
||||||
ui = {
|
|
||||||
paginate = "never";
|
|
||||||
# pager = "${pkgs.delta}/bin/delta";
|
|
||||||
# for delta
|
|
||||||
# diff-formatter = ":git";
|
|
||||||
diff-formatter = [
|
|
||||||
"${pkgs.difftastic}/bin/difft"
|
|
||||||
"--color=always"
|
|
||||||
"$left"
|
|
||||||
"$right"
|
|
||||||
];
|
|
||||||
|
|
||||||
default-command = [
|
|
||||||
"log"
|
|
||||||
"--reversed"
|
|
||||||
"--no-pager"
|
|
||||||
];
|
|
||||||
merge-editor = [
|
|
||||||
"${pkgs.meld}/bin/meld"
|
|
||||||
"$left"
|
|
||||||
"$base"
|
|
||||||
"$right"
|
|
||||||
"-o"
|
|
||||||
"$output"
|
|
||||||
"--auto-merge"
|
|
||||||
];
|
|
||||||
# diff-editor = "${pkgs.meld}/bin/meld";
|
|
||||||
};
|
|
||||||
|
|
||||||
fsmonitor.backend = "watchman";
|
|
||||||
fsmonitor.watchman.register-snapshot-trigger = true;
|
|
||||||
|
|
||||||
# revsets.log = "@ | ancestors(trunk()..(visible_heads() & mine()), 2) | trunk()";
|
|
||||||
# revsets.log = "trunk()..@ | @..trunk() | trunk() | @:: | fork_point(trunk() | @)";
|
|
||||||
revsets.log = "trunk() | ancestors(trunk()..heads(((trunk()..visible_heads()) & my() | @)::), 2)";
|
|
||||||
|
|
||||||
revset-aliases = {
|
|
||||||
"my()" = "user(\"${config.programs.jujutsu.settings.user.email}\")";
|
|
||||||
"user(x)" = "author(x) | committer(x)";
|
|
||||||
current = "bookmarks() & my() & ~immutable()";
|
|
||||||
"closest_bookmark(to)" = "heads(::to & bookmarks())";
|
|
||||||
};
|
|
||||||
|
|
||||||
template-aliases = {
|
|
||||||
"format_timestamp(timestamp)" = "timestamp.ago()";
|
|
||||||
log_oneline = ''
|
|
||||||
if(root,
|
|
||||||
format_root_commit(self),
|
|
||||||
label(if(current_working_copy, "working_copy"),
|
|
||||||
concat(
|
|
||||||
separate(" ",
|
|
||||||
format_short_change_id_with_change_offset(self),
|
|
||||||
if(empty, label("empty", "(empty)")),
|
|
||||||
if(description,
|
|
||||||
description.first_line(),
|
|
||||||
label(if(empty, "empty"), description_placeholder),
|
|
||||||
),
|
|
||||||
bookmarks,
|
|
||||||
tags,
|
|
||||||
working_copies,
|
|
||||||
if(conflict, label("conflict", "conflict")),
|
|
||||||
if(config("ui.show-cryptographic-signatures").as_boolean(),
|
|
||||||
format_short_cryptographic_signature(signature)),
|
|
||||||
) ++ "\n",
|
|
||||||
),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
'';
|
|
||||||
# if(.contained_in('first_parent(@)'), label("git_head", "HEAD")),
|
|
||||||
status_summary = "'\n' ++ self.diff().summary() ++ '\n'";
|
|
||||||
log_oneline_with_status_summary = "log_oneline ++ if(self.current_working_copy() && self.diff().files().len() > 0, status_summary)";
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases =
|
|
||||||
let
|
|
||||||
util = script: [
|
|
||||||
"util"
|
|
||||||
"exec"
|
|
||||||
"--"
|
|
||||||
"bash"
|
|
||||||
"-c"
|
|
||||||
script
|
|
||||||
];
|
|
||||||
in
|
|
||||||
{
|
|
||||||
tug = [
|
|
||||||
"bookmark"
|
|
||||||
"move"
|
|
||||||
"--from"
|
|
||||||
"heads(@- & bookmarks())"
|
|
||||||
"--to"
|
|
||||||
"coalesce(@ & ~empty(), @-)"
|
|
||||||
];
|
|
||||||
fuck = [
|
|
||||||
"bookmark"
|
|
||||||
"move"
|
|
||||||
"--from"
|
|
||||||
"heads(@ & bookmarks())"
|
|
||||||
"--to"
|
|
||||||
"@-"
|
|
||||||
"--allow-backwards"
|
|
||||||
];
|
|
||||||
catchup = [
|
|
||||||
"rebase"
|
|
||||||
"-b"
|
|
||||||
"bookmarks() & mine() & ~immutable()"
|
|
||||||
"-d"
|
|
||||||
"trunk()"
|
|
||||||
"--skip-emptied"
|
|
||||||
];
|
|
||||||
pull = util ''
|
|
||||||
jj git fetch
|
|
||||||
jj catchup
|
|
||||||
'';
|
|
||||||
ch = [
|
|
||||||
"show"
|
|
||||||
"--stat"
|
|
||||||
];
|
|
||||||
move = [
|
|
||||||
"rebase"
|
|
||||||
"-r"
|
|
||||||
];
|
|
||||||
push = [
|
|
||||||
"git"
|
|
||||||
"push"
|
|
||||||
];
|
|
||||||
ll = [
|
|
||||||
"log"
|
|
||||||
"-T"
|
|
||||||
"builtin_log_compact"
|
|
||||||
];
|
|
||||||
mdiff = [
|
|
||||||
"diff"
|
|
||||||
"--from"
|
|
||||||
"trunk()"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
templates = {
|
ui = {
|
||||||
log_node = ''
|
paginate = "never";
|
||||||
label("node",
|
# pager = "${pkgs.delta}/bin/delta";
|
||||||
coalesce(
|
# for delta
|
||||||
if(!self, label("elided", "~")),
|
# diff-formatter = ":git";
|
||||||
if(current_working_copy, label("working_copy", "@")),
|
diff-formatter = [
|
||||||
if(conflict, label("conflict", "×")),
|
"${pkgs.difftastic}/bin/difft"
|
||||||
if(immutable, label("immutable", "*")),
|
"--color=always"
|
||||||
label("normal", "·")
|
"$left"
|
||||||
|
"$right"
|
||||||
|
];
|
||||||
|
|
||||||
|
default-command = [
|
||||||
|
"log"
|
||||||
|
"--reversed"
|
||||||
|
"--no-pager"
|
||||||
|
];
|
||||||
|
merge-editor = [
|
||||||
|
"${pkgs.meld}/bin/meld"
|
||||||
|
"$left"
|
||||||
|
"$base"
|
||||||
|
"$right"
|
||||||
|
"-o"
|
||||||
|
"$output"
|
||||||
|
"--auto-merge"
|
||||||
|
];
|
||||||
|
# diff-editor = "${pkgs.meld}/bin/meld";
|
||||||
|
};
|
||||||
|
|
||||||
|
fsmonitor.backend = "watchman";
|
||||||
|
fsmonitor.watchman.register-snapshot-trigger = true;
|
||||||
|
|
||||||
|
revsets.log = "@ | ancestors(trunk()..(visible_heads() & mine()), 2) | trunk()";
|
||||||
|
# revsets.log = "trunk()..@ | @..trunk() | trunk() | @:: | fork_point(trunk() | @)";
|
||||||
|
# revsets.log = "trunk() | ancestors(trunk()..heads(((trunk()..visible_heads()) & my() | @)::), 2)";
|
||||||
|
|
||||||
|
revset-aliases = {
|
||||||
|
"my()" = "user(\"${config.programs.jujutsu.settings.user.email}\")";
|
||||||
|
"user(x)" = "author(x) | committer(x)";
|
||||||
|
current = "bookmarks() & my() & ~immutable()";
|
||||||
|
"closest_bookmark(to)" = "heads(::to & bookmarks())";
|
||||||
|
};
|
||||||
|
|
||||||
|
template-aliases = {
|
||||||
|
"format_timestamp(timestamp)" = "timestamp.ago()";
|
||||||
|
log_oneline = ''
|
||||||
|
if(root,
|
||||||
|
format_root_commit(self),
|
||||||
|
label(if(current_working_copy, "working_copy"),
|
||||||
|
concat(
|
||||||
|
separate(" ",
|
||||||
|
format_short_change_id_with_change_offset(self),
|
||||||
|
if(empty, label("empty", "(empty)")),
|
||||||
|
if(description,
|
||||||
|
description.first_line(),
|
||||||
|
label(if(empty, "empty"), description_placeholder),
|
||||||
|
),
|
||||||
|
bookmarks,
|
||||||
|
tags,
|
||||||
|
working_copies,
|
||||||
|
if(conflict, label("conflict", "conflict")),
|
||||||
|
if(config("ui.show-cryptographic-signatures").as_boolean(),
|
||||||
|
format_short_cryptographic_signature(signature)),
|
||||||
|
) ++ "\n",
|
||||||
|
),
|
||||||
|
)
|
||||||
)
|
)
|
||||||
)
|
'';
|
||||||
'';
|
# if(.contained_in('first_parent(@)'), label("git_head", "HEAD")),
|
||||||
log = "log_oneline_with_status_summary";
|
status_summary = "'\n' ++ self.diff().summary() ++ '\n'";
|
||||||
git_push_bookmark = ''"jdonszelmann/" ++ change_id.short()'';
|
log_oneline_with_status_summary = "log_oneline ++ if(self.current_working_copy() && self.diff().files().len() > 0, status_summary)";
|
||||||
};
|
};
|
||||||
|
|
||||||
signing = {
|
aliases =
|
||||||
# sign-all = true;
|
let
|
||||||
behavior = "own";
|
util = script: [
|
||||||
backend = "ssh";
|
"util"
|
||||||
key = "~/.ssh/id_ed25519.pub";
|
"exec"
|
||||||
};
|
"--"
|
||||||
|
"bash"
|
||||||
|
"-c"
|
||||||
|
script
|
||||||
|
];
|
||||||
|
in
|
||||||
|
{
|
||||||
|
tug = [
|
||||||
|
"bookmark"
|
||||||
|
"move"
|
||||||
|
"--from"
|
||||||
|
"heads(@- & bookmarks())"
|
||||||
|
"--to"
|
||||||
|
"coalesce(@ & ~empty(), @-)"
|
||||||
|
];
|
||||||
|
fuck = [
|
||||||
|
"bookmark"
|
||||||
|
"move"
|
||||||
|
"--from"
|
||||||
|
"heads(@ & bookmarks())"
|
||||||
|
"--to"
|
||||||
|
"@-"
|
||||||
|
"--allow-backwards"
|
||||||
|
];
|
||||||
|
catchup = [
|
||||||
|
"rebase"
|
||||||
|
"-b"
|
||||||
|
"bookmarks() & mine() & ~immutable()"
|
||||||
|
"-d"
|
||||||
|
"trunk()"
|
||||||
|
"--skip-emptied"
|
||||||
|
];
|
||||||
|
pull = util ''
|
||||||
|
jj git fetch
|
||||||
|
jj catchup
|
||||||
|
'';
|
||||||
|
ch = [
|
||||||
|
"show"
|
||||||
|
"--stat"
|
||||||
|
];
|
||||||
|
move = [
|
||||||
|
"rebase"
|
||||||
|
"-r"
|
||||||
|
];
|
||||||
|
push = [
|
||||||
|
"git"
|
||||||
|
"push"
|
||||||
|
];
|
||||||
|
ll = [
|
||||||
|
"log"
|
||||||
|
"-T"
|
||||||
|
"builtin_log_compact"
|
||||||
|
];
|
||||||
|
mdiff = [
|
||||||
|
"diff"
|
||||||
|
"--from"
|
||||||
|
"trunk()"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
# remotes.origin.auto-track-bookmarks = true;
|
templates = {
|
||||||
# remotes.upstream.auto-track-bookmarks = true;
|
log_node = ''
|
||||||
|
label("node",
|
||||||
|
coalesce(
|
||||||
|
if(!self, label("elided", "~")),
|
||||||
|
if(current_working_copy, label("working_copy", "@")),
|
||||||
|
if(conflict, label("conflict", "×")),
|
||||||
|
if(immutable, label("immutable", "*")),
|
||||||
|
label("normal", "·")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
log = "log_oneline_with_status_summary";
|
||||||
|
git_push_bookmark = ''"jdonszelmann/" ++ change_id.short()'';
|
||||||
|
};
|
||||||
|
|
||||||
git = {
|
signing = {
|
||||||
private-commits = "description(glob:'wip:*') | description(glob:'trial:*')";
|
# sign-all = true;
|
||||||
write-change-id-header = true;
|
behavior = "own";
|
||||||
|
backend = "ssh";
|
||||||
|
key = "~/.ssh/id_ed25519.pub";
|
||||||
|
};
|
||||||
|
|
||||||
fetch = [
|
# remotes.origin.auto-track-bookmarks = true;
|
||||||
"upstream"
|
# remotes.upstream.auto-track-bookmarks = true;
|
||||||
"origin"
|
|
||||||
];
|
git = {
|
||||||
push = "origin";
|
private-commits = "description(glob:'wip:*') | description(glob:'trial:*')";
|
||||||
|
write-change-id-header = true;
|
||||||
|
|
||||||
|
fetch = [
|
||||||
|
"upstream"
|
||||||
|
"origin"
|
||||||
|
];
|
||||||
|
push = "origin";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
inputs@{ machine, pkgs, ... }:
|
||||||
let
|
let
|
||||||
kanata-config = ''
|
kanata-config = ''
|
||||||
(defcfg
|
(defcfg
|
||||||
|
|
@ -26,25 +26,29 @@ let
|
||||||
|
|
||||||
(deflayer control
|
(deflayer control
|
||||||
@esc
|
@esc
|
||||||
grv 1 2 3 4 5 6 7 8 9 0 - = bspc
|
grv 1 2 3 4 5 6 7 8 9 0 - = bspc
|
||||||
tab q w e @replay t y u i o p @wup @wdown \
|
tab @mcleft @mup @mcright @replay t y u i o p @wup @wdown \
|
||||||
@cap a s d f g left down up right ; ' bspc
|
@cap @mleft @mdown @mright f g left down up right ; ' bspc
|
||||||
lsft z x C-c v bspc n @macro , . C-f rsft
|
lsft z x C-c v bspc n @macro , . C-f rsft
|
||||||
lctl lmet lalt spc ralt @rctl
|
lctl lmet lalt spc ralt @rctl
|
||||||
)
|
)
|
||||||
|
|
||||||
(deflayermap (programming)
|
(deflayermap (other)
|
||||||
f (macro f n spc)
|
w @mup
|
||||||
w (macro w h e r e spc)
|
a @mleft
|
||||||
l (macro l o o p { ret)
|
s @mdown
|
||||||
u (macro u s e spc)
|
d @mright
|
||||||
i (macro i m p o r t spc)
|
|
||||||
s (macro s e l f spc)
|
q @mcleft
|
||||||
|
e @mcright
|
||||||
|
|
||||||
|
[ @wup
|
||||||
|
] @wdown
|
||||||
)
|
)
|
||||||
|
|
||||||
(defalias
|
(defalias
|
||||||
;; hold esc
|
;; hold esc
|
||||||
esc (tap-hold 800 800 esc caps)
|
esc (tap-hold 200 200 C-k (macro C-f esc))
|
||||||
|
|
||||||
;; control
|
;; control
|
||||||
cap (tap-hold-release 200 200
|
cap (tap-hold-release 200 200
|
||||||
|
|
@ -58,6 +62,14 @@ let
|
||||||
lmet
|
lmet
|
||||||
)
|
)
|
||||||
|
|
||||||
|
mup (movemouse-up 1 1)
|
||||||
|
mleft (movemouse-left 1 1)
|
||||||
|
mdown (movemouse-down 1 1)
|
||||||
|
mright (movemouse-right 1 1)
|
||||||
|
|
||||||
|
mcleft mlft
|
||||||
|
mcright mrgt
|
||||||
|
|
||||||
macro (dynamic-macro-record 0)
|
macro (dynamic-macro-record 0)
|
||||||
replay (dynamic-macro-play 0)
|
replay (dynamic-macro-play 0)
|
||||||
|
|
||||||
|
|
@ -68,38 +80,42 @@ let
|
||||||
rctl (
|
rctl (
|
||||||
tap-hold-release
|
tap-hold-release
|
||||||
200 200
|
200 200
|
||||||
C-k (layer-while-held programming)
|
C-k (layer-while-held other)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
custom.program.kanata.requirements = [ "graphical" ];
|
imports = machine.program {
|
||||||
custom.program.kanata.home-config =
|
name = "kanata";
|
||||||
{ pkgs, config, ... }:
|
inherit inputs;
|
||||||
{
|
requirements = [ "graphical" ];
|
||||||
systemd.user.services.kanata = {
|
home-config =
|
||||||
Unit = {
|
{ pkgs, ... }:
|
||||||
Description = "kanata";
|
{
|
||||||
|
systemd.user.services.kanata = {
|
||||||
|
Unit = {
|
||||||
|
Description = "kanata";
|
||||||
|
};
|
||||||
|
|
||||||
|
Service = {
|
||||||
|
Restart = "always";
|
||||||
|
RestartSec = "3";
|
||||||
|
ExecStart = "${pkgs.kanata-with-cmd}/bin/kanata --cfg ${pkgs.writeText "kanata.kbd" kanata-config}";
|
||||||
|
Nice = "-20";
|
||||||
|
};
|
||||||
|
|
||||||
|
Install = {
|
||||||
|
WantedBy = [ "default.target" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
Service = {
|
home.file.kanata = {
|
||||||
Restart = "always";
|
target = ".config/kanata/kanata.kbd";
|
||||||
RestartSec = "3";
|
text = kanata-config;
|
||||||
ExecStart = "${pkgs.kanata-with-cmd}/bin/kanata --cfg ${pkgs.writeText "kanata.kbd" kanata-config}";
|
|
||||||
Nice = "-20";
|
|
||||||
};
|
|
||||||
|
|
||||||
Install = {
|
|
||||||
WantedBy = [ "default.target" ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
home.file.kanata = {
|
|
||||||
target = ".config/kanata/kanata.kbd";
|
|
||||||
text = kanata-config;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# custom.program.kanata.system-config =
|
# custom.program.kanata.system-config =
|
||||||
# { pkgs, ... }:
|
# { pkgs, ... }:
|
||||||
|
|
@ -111,15 +127,6 @@ in
|
||||||
# reboot or sudo udevadm control --reload-rules && sudo udevadm trigger
|
# reboot or sudo udevadm control --reload-rules && sudo udevadm trigger
|
||||||
# sudo modprobe uinput
|
# sudo modprobe uinput
|
||||||
|
|
||||||
users.groups.uinput = { };
|
|
||||||
users.extraUsers.jana.extraGroups = [
|
|
||||||
"uinput"
|
|
||||||
"input"
|
|
||||||
];
|
|
||||||
environment.systemPackages = [ pkgs.kanata-with-cmd ];
|
|
||||||
services.udev.extraRules = ''
|
|
||||||
KERNEL=="uinput", MODE="0660", GROUP="uinput", OPTIONS+="static_node=uinput"
|
|
||||||
'';
|
|
||||||
# };
|
# };
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,59 +1,68 @@
|
||||||
_: {
|
inputs@{ machine, ... }:
|
||||||
custom.program.kitty.requirements = [ "graphical" ];
|
{
|
||||||
custom.program.kitty.home-config =
|
imports = machine.program {
|
||||||
{ pkgs, flakes, ... }:
|
name = "kitty";
|
||||||
{
|
inherit inputs;
|
||||||
home.packages = pkgs.custom.maple-fonts-pack;
|
requirements = [ "graphical" ];
|
||||||
|
home-config =
|
||||||
|
{ pkgs, flakes, ... }:
|
||||||
|
{
|
||||||
|
home.packages = pkgs.custom.maple-fonts-pack;
|
||||||
|
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
font = {
|
font = {
|
||||||
name = "Maple Mono NF";
|
name = "Maple Mono NF";
|
||||||
size = 13.0;
|
size = 11.0;
|
||||||
package = pkgs.jetbrains-mono;
|
package = pkgs.jetbrains-mono;
|
||||||
|
};
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
scrollback_lines = 20000;
|
||||||
|
allow_hyperlinks = true;
|
||||||
|
|
||||||
|
repaint_delay = 10;
|
||||||
|
input_delay = 3;
|
||||||
|
|
||||||
|
enable_audio_bell = false;
|
||||||
|
update_check_interval = 0;
|
||||||
|
|
||||||
|
initial_window_width = "95c";
|
||||||
|
initial_window_height = "30c";
|
||||||
|
remember_window_size = "no";
|
||||||
|
|
||||||
|
draw_minimal_borders = false;
|
||||||
|
hide_window_decorations = true;
|
||||||
|
|
||||||
|
shell = "${pkgs.tmux}/bin/tmux";
|
||||||
|
clipboard_control = "write-clipboard write-primary read-clipboard read-primary";
|
||||||
|
|
||||||
|
foreground = "#fcfcfc";
|
||||||
|
background = "#232627";
|
||||||
|
linux_display_server = "auto";
|
||||||
|
};
|
||||||
|
|
||||||
|
keybindings = {
|
||||||
|
"ctrl+f" =
|
||||||
|
"launch --location=hsplit --allow-remote-control kitty +kitten ${flakes.kitty-search}/search.py @active-kitty-window-id";
|
||||||
|
"ctrl+alt+r" = "load_config_file";
|
||||||
|
"ctrl+shift+r" = "no_op";
|
||||||
|
"super+`" = "no_op";
|
||||||
|
"ctrl+EQUAL" = "change_font_size all +2.0";
|
||||||
|
"ctrl+minus" = "change_font_size all -2.0";
|
||||||
|
"ctrl+0" = "change_font_size all 0";
|
||||||
|
# "ctrl+/" = "send_text all ";
|
||||||
|
"super+~" = "no_op";
|
||||||
|
|
||||||
|
# required for vim!!
|
||||||
|
# terminals map ctrl+i to tab. I want them to do different things in vim.
|
||||||
|
"ctrl+i" = "send_text all \\x01";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraConfig = ''
|
||||||
|
mouse_map left click ungrabbed no-op
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = {
|
|
||||||
scrollback_lines = 20000;
|
|
||||||
allow_hyperlinks = true;
|
|
||||||
|
|
||||||
repaint_delay = 10;
|
|
||||||
input_delay = 3;
|
|
||||||
|
|
||||||
enable_audio_bell = false;
|
|
||||||
update_check_interval = 0;
|
|
||||||
|
|
||||||
initial_window_width = "95c";
|
|
||||||
initial_window_height = "30c";
|
|
||||||
remember_window_size = "no";
|
|
||||||
|
|
||||||
draw_minimal_borders = false;
|
|
||||||
hide_window_decorations = true;
|
|
||||||
|
|
||||||
shell = "${pkgs.tmux}/bin/tmux";
|
|
||||||
clipboard_control = "write-clipboard write-primary read-clipboard read-primary";
|
|
||||||
|
|
||||||
foreground = "#fcfcfc";
|
|
||||||
background = "#232627";
|
|
||||||
linux_display_server = "auto";
|
|
||||||
};
|
|
||||||
|
|
||||||
keybindings = {
|
|
||||||
"ctrl+f" =
|
|
||||||
"launch --location=hsplit --allow-remote-control kitty +kitten ${flakes.kitty-search}/search.py @active-kitty-window-id";
|
|
||||||
"ctrl+alt+r" = "load_config_file";
|
|
||||||
"ctrl+shift+r" = "no_op";
|
|
||||||
"super+`" = "no_op";
|
|
||||||
"ctrl+EQUAL" = "change_font_size all +2.0";
|
|
||||||
"ctrl+minus" = "change_font_size all -2.0";
|
|
||||||
"ctrl+0" = "change_font_size all 0";
|
|
||||||
# "ctrl+/" = "send_text all ";
|
|
||||||
"super+~" = "no_op";
|
|
||||||
};
|
|
||||||
|
|
||||||
extraConfig = ''
|
|
||||||
mouse_map left click ungrabbed no-op
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -19,134 +19,32 @@ local esc = vim.api.nvim_replace_termcodes(
|
||||||
)
|
)
|
||||||
local api = require('Comment.api')
|
local api = require('Comment.api')
|
||||||
|
|
||||||
vim.keymap.set("n", "<C-_>", ":lua require('Comment.api').toggle.linewise.current()<CR> j", { remap = true })
|
vim.keymap.set("n", "<C-_>", ":lua require('Comment.api').toggle.linewise.current()<CR>j", { remap = true })
|
||||||
vim.keymap.set("i", "<C-_>", "<c-o>:lua require('Comment.api').toggle.linewise.current()<CR>", { remap = true })
|
vim.keymap.set("i", "<C-_>", "<c-o>:lua require('Comment.api').toggle.linewise.current()<CR>", { remap = true })
|
||||||
vim.keymap.set("x", "<C-_>", function()
|
vim.keymap.set("x", "<C-_>", function()
|
||||||
vim.api.nvim_feedkeys(esc, 'nx', false)
|
vim.api.nvim_feedkeys(esc, 'nx', false)
|
||||||
api.toggle.linewise(vim.fn.visualmode())
|
api.toggle.linewise(vim.fn.visualmode())
|
||||||
end, { remap = true })
|
end, { remap = true })
|
||||||
|
|
||||||
vim.keymap.set('n', 'gr', (function() builtin.lsp_references({jump_type="vsplit"}) end), {})
|
|
||||||
vim.keymap.set('n', 'gd', (function() builtin.lsp_definitions({jump_type="vsplit"}) end), {})
|
|
||||||
vim.keymap.set('n', 'gt', (function() builtin.lsp_type_definitions({jump_type="vsplit"}) end), {})
|
|
||||||
|
|
||||||
local barbar_state = require("barbar.state")
|
|
||||||
function find_windows_with_buffer(bufnum)
|
|
||||||
windows = {}
|
|
||||||
|
|
||||||
local window_list = vim.api.nvim_list_wins()
|
-- vim.keymap.set('n', 'gr', (function() builtin.lsp_references({jump_type="vsplit"}) end), {})
|
||||||
|
-- vim.keymap.set('n', 'gd', (function() builtin.lsp_definitions({jump_type="vsplit"}) end), {})
|
||||||
|
-- vim.keymap.set('n', 'gt', (function() builtin.lsp_type_definitions({jump_type="vsplit"}) end), {})
|
||||||
|
-- vim.keymap.set('n', 'gt', (function() builtin.lsp_type_definitions({jump_type="vsplit"}) end), {})
|
||||||
|
|
||||||
for _, window in ipairs(window_list) do
|
|
||||||
local win_info = vim.fn.getwininfo(window)
|
|
||||||
|
|
||||||
if win_info ~= nil then
|
|
||||||
for _, buf in ipairs(win_info) do
|
|
||||||
if buf.bufnr == bufnum then
|
|
||||||
table.insert(windows, window)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return windows
|
-- local function close_floating()
|
||||||
end
|
-- for _, win in ipairs(vim.api.nvim_list_wins()) do
|
||||||
|
-- local config = vim.api.nvim_win_get_config(win)
|
||||||
function num_useful_windows()
|
-- if config.relative ~= "" then
|
||||||
local window_list = vim.api.nvim_tabpage_list_wins(0)
|
-- vim.api.nvim_win_close(win, false)
|
||||||
local num = 0
|
-- end
|
||||||
|
-- end
|
||||||
for _, window in ipairs(window_list) do
|
-- end
|
||||||
local win_info = vim.fn.getwininfo(window)
|
--
|
||||||
|
-- vim.keymap.set("n", "<Esc>", close_floating, { desc = "Close floats, clear highlights" })
|
||||||
if win_info ~= nil then
|
|
||||||
for _, win_info in ipairs(win_info) do
|
|
||||||
if buf_is_useful(win_info.bufnr) then
|
|
||||||
num = num + 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return num
|
|
||||||
end
|
|
||||||
|
|
||||||
function buf_is_useful(bufnr)
|
|
||||||
local bufname = vim.api.nvim_buf_get_name(bufnr)
|
|
||||||
|
|
||||||
-- if the window's buffer has no name, it's not useful
|
|
||||||
if bufname == '' then
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
-- print("bufname: ", bufname)
|
|
||||||
|
|
||||||
-- if the window's buffer is read only, it's not useful
|
|
||||||
local readonly = vim.api.nvim_buf_get_option(bufnr, 'readonly')
|
|
||||||
if readonly then
|
|
||||||
-- print("=readonly")
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
-- -- if the buffer is not listed, it's not useful
|
|
||||||
local listed = vim.api.nvim_buf_get_option(bufnr, 'buflisted')
|
|
||||||
if not listed then
|
|
||||||
-- print("=unlisted")
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
local buftype = vim.api.nvim_buf_get_option(bufnr, 'buftype')
|
|
||||||
if buftype == "quickfix" then
|
|
||||||
-- print("=readonly")
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
local lines = vim.api.nvim_buf_get_lines(bufnr, 0, -1, false)
|
|
||||||
if #lines > 1 or (#lines == 1 and #lines[1] > 0) then
|
|
||||||
return true -- If the buffer has content, return false
|
|
||||||
else
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
-- the window contains a useful buffer
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
|
|
||||||
function quit_window(window)
|
|
||||||
vim.api.nvim_win_call(window, function()
|
|
||||||
vim.cmd "quit"
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
vim.api.nvim_create_user_command('CloseBuffer', function (opts)
|
|
||||||
if num_useful_windows() > 1 then
|
|
||||||
vim.cmd {
|
|
||||||
cmd = "quit",
|
|
||||||
bang = opts.bang,
|
|
||||||
}
|
|
||||||
else
|
|
||||||
vim.cmd {
|
|
||||||
cmd = "BufferDelete",
|
|
||||||
bang = opts.bang,
|
|
||||||
}
|
|
||||||
if not buf_is_useful(vim.api.nvim_get_current_buf()) then
|
|
||||||
vim.cmd {
|
|
||||||
cmd = "quit",
|
|
||||||
bang = opts.bang,
|
|
||||||
}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end, { desc = "Close Current Buffer", bang = true, })
|
|
||||||
|
|
||||||
local function close_floating()
|
|
||||||
for _, win in ipairs(vim.api.nvim_list_wins()) do
|
|
||||||
local config = vim.api.nvim_win_get_config(win)
|
|
||||||
if config.relative ~= "" then
|
|
||||||
vim.api.nvim_win_close(win, false)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
vim.keymap.set("n", "<Esc>", close_floating, { desc = "Close floats, clear highlights" })
|
|
||||||
|
|
||||||
local builtin = require('telescope.builtin')
|
local builtin = require('telescope.builtin')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,104 +1,160 @@
|
||||||
_: {
|
inputs@{ machine, ... }:
|
||||||
custom.program.nvim.requirements = [ "cli" ];
|
{
|
||||||
custom.program.nvim.home-config =
|
imports = machine.program {
|
||||||
{ pkgs, flakes, ... }:
|
name = "nvim";
|
||||||
{
|
inherit inputs;
|
||||||
|
requirements = [ "cli" ];
|
||||||
home = {
|
home-config =
|
||||||
sessionVariables = {
|
{
|
||||||
EDITOR = "nvim";
|
pkgs,
|
||||||
|
flakes,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
nvim_mime_types = [
|
||||||
|
"application/x-zerosize"
|
||||||
|
"text/english"
|
||||||
|
"text/plain"
|
||||||
|
"text/x-makefile"
|
||||||
|
"text/x-c++hdr"
|
||||||
|
"text/x-c++src"
|
||||||
|
"text/x-chdr"
|
||||||
|
"text/x-csrc"
|
||||||
|
"text/x-java"
|
||||||
|
"text/x-moc"
|
||||||
|
"text/x-pascal"
|
||||||
|
"text/x-tcl"
|
||||||
|
"text/x-tex"
|
||||||
|
"application/x-shellscript"
|
||||||
|
"text/x-c"
|
||||||
|
"text/x-c++"
|
||||||
|
];
|
||||||
|
desktop-entry-name = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanvim";
|
||||||
|
desktop-entry = pkgs.makeDesktopItem {
|
||||||
|
name = desktop-entry-name;
|
||||||
|
desktopName = "neovim";
|
||||||
|
exec = "${./editor-hax.py} %F";
|
||||||
|
tryExec = "${./editor-hax.py}";
|
||||||
|
terminal = false;
|
||||||
|
type = "Application";
|
||||||
|
categories = [
|
||||||
|
"Utility"
|
||||||
|
"TextEditor"
|
||||||
|
];
|
||||||
|
icon = "terminal";
|
||||||
|
mimeTypes = nvim_mime_types;
|
||||||
};
|
};
|
||||||
};
|
in
|
||||||
|
{
|
||||||
imports = [
|
home = {
|
||||||
flakes.nixvim.homeModules.nixvim
|
sessionVariables = {
|
||||||
./options.nix
|
EDITOR = "nvim";
|
||||||
./plugins.nix
|
|
||||||
./keys.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.nixvim = {
|
|
||||||
enable = true;
|
|
||||||
globals.mapleader = " ";
|
|
||||||
globals.maplocalleader = " ";
|
|
||||||
|
|
||||||
viAlias = true;
|
|
||||||
vimAlias = true;
|
|
||||||
|
|
||||||
# Highlight and remove extra white spaces
|
|
||||||
# same color as cursorline as per
|
|
||||||
# https://github.com/joshdick/onedark.vim/blob/390b893d361c356ac1b00778d849815f2aa44ae4/autoload/onedark.vim
|
|
||||||
highlight.ExtraWhitespace.bg = "#2C323C";
|
|
||||||
match.ExtraWhitespace = "\\s\\+$";
|
|
||||||
|
|
||||||
clipboard.providers.wl-copy.enable = true;
|
|
||||||
|
|
||||||
performance = {
|
|
||||||
byteCompileLua.enable = true;
|
|
||||||
combinePlugins = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
standalonePlugins = [
|
|
||||||
# clashes with lualine
|
|
||||||
"onedark.nvim"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
extraLuaPackages = ps: [ ps.magick ];
|
home.file.".local/share/applications/${desktop-entry-name}.desktop" = {
|
||||||
extraPackages = [ pkgs.imagemagick ];
|
source = "${desktop-entry}/share/applications/${desktop-entry-name}.desktop";
|
||||||
|
};
|
||||||
|
|
||||||
# package = (import inputs.unstable { inherit (pkgs) system; }).neovim-unwrapped;
|
xdg.mimeApps.associations.added = lib.mergeAttrsList (
|
||||||
package = pkgs.neovim-unwrapped;
|
map (mime: {
|
||||||
|
${mime} = [ "${desktop-entry-name}.desktop" ];
|
||||||
|
}) nvim_mime_types
|
||||||
|
);
|
||||||
|
|
||||||
colorschemes.onedark = {
|
imports = [
|
||||||
|
flakes.nixvim.homeModules.nixvim
|
||||||
|
./options.nix
|
||||||
|
./plugins.nix
|
||||||
|
./keys.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
globals.mapleader = " ";
|
||||||
style = "deep";
|
globals.maplocalleader = " ";
|
||||||
|
|
||||||
highlights = {
|
viAlias = true;
|
||||||
# bright green doccomments
|
vimAlias = true;
|
||||||
"@lsp.type.comment".fg = "#77B767";
|
|
||||||
"@comment.documentation.rust".fg = "#77B767";
|
# Highlight and remove extra white spaces
|
||||||
"@comment.documentation".fg = "#77B767";
|
# same color as cursorline as per
|
||||||
"@comment".fg = "#426639";
|
# https://github.com/joshdick/onedark.vim/blob/390b893d361c356ac1b00778d849815f2aa44ae4/autoload/onedark.vim
|
||||||
# "Visual".bg = "#2a2e36";
|
highlight.ExtraWhitespace.bg = "#2C323C";
|
||||||
# "Cursorline".bg = "#2a2e36";
|
match.ExtraWhitespace = "\\s\\+$";
|
||||||
|
|
||||||
|
clipboard.providers.wl-copy.enable = true;
|
||||||
|
|
||||||
|
performance = {
|
||||||
|
byteCompileLua.enable = true;
|
||||||
|
combinePlugins = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
standalonePlugins = [
|
||||||
|
# clashes with lualine
|
||||||
|
"onedark.nvim"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extraLuaPackages = ps: [ ps.magick ];
|
||||||
|
extraPackages = [ pkgs.imagemagick ];
|
||||||
|
|
||||||
|
# package = (import inputs.unstable { inherit (pkgs) system; }).neovim-unwrapped;
|
||||||
|
package = pkgs.neovim-unwrapped;
|
||||||
|
|
||||||
|
colorschemes.onedark = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
style = "deep";
|
||||||
|
|
||||||
|
highlights = {
|
||||||
|
# bright green doccomments
|
||||||
|
"@lsp.type.comment".fg = "#77B767";
|
||||||
|
"@comment.documentation.rust".fg = "#77B767";
|
||||||
|
"@comment.documentation".fg = "#77B767";
|
||||||
|
"@comment".fg = "#426639";
|
||||||
|
# "Visual".bg = "#2a2e36";
|
||||||
|
# "Cursorline".bg = "#2a2e36";
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
extraConfigLuaPre = ''
|
||||||
|
require("neoconf").setup({})
|
||||||
|
'';
|
||||||
|
extraConfigLua = ''
|
||||||
|
require("render-markdown").setup {
|
||||||
|
latex_converter = '${pkgs.python312Packages.pylatexenc}/bin/latex2text',
|
||||||
|
}
|
||||||
|
''
|
||||||
|
|
||||||
|
# local lspconfig = require 'lspconfig'
|
||||||
|
# local configs = require 'lspconfig.configs'
|
||||||
|
# if not configs.foo_lsp then
|
||||||
|
# configs.noteslsp = {
|
||||||
|
# default_config = {
|
||||||
|
# -- cmd = {'${pkgs.custom.noteslsp}/bin/noteslsp'},
|
||||||
|
# cmd = {'./noteslsp/target/debug/noteslsp'},
|
||||||
|
# filetypes = {'markdown'},
|
||||||
|
# root_dir = function(fname)
|
||||||
|
# return lspconfig.util.find_git_ancestor(fname)
|
||||||
|
# end,
|
||||||
|
# settings = {}
|
||||||
|
# ,
|
||||||
|
# },
|
||||||
|
# }
|
||||||
|
# end
|
||||||
|
#
|
||||||
|
# lspconfig.noteslsp.setup{}
|
||||||
|
# ''
|
||||||
|
+ (builtins.readFile ./config.lua);
|
||||||
|
extraConfigLuaPost = ''
|
||||||
|
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
extraConfigLuaPre = ''
|
|
||||||
require("neoconf").setup({})
|
|
||||||
'';
|
|
||||||
extraConfigLua = ''
|
|
||||||
require("render-markdown").setup {
|
|
||||||
latex_converter = '${pkgs.python312Packages.pylatexenc}/bin/latex2text',
|
|
||||||
}
|
|
||||||
''
|
|
||||||
|
|
||||||
# local lspconfig = require 'lspconfig'
|
|
||||||
# local configs = require 'lspconfig.configs'
|
|
||||||
# if not configs.foo_lsp then
|
|
||||||
# configs.noteslsp = {
|
|
||||||
# default_config = {
|
|
||||||
# -- cmd = {'${pkgs.custom.noteslsp}/bin/noteslsp'},
|
|
||||||
# cmd = {'./noteslsp/target/debug/noteslsp'},
|
|
||||||
# filetypes = {'markdown'},
|
|
||||||
# root_dir = function(fname)
|
|
||||||
# return lspconfig.util.find_git_ancestor(fname)
|
|
||||||
# end,
|
|
||||||
# settings = {}
|
|
||||||
# ,
|
|
||||||
# },
|
|
||||||
# }
|
|
||||||
# end
|
|
||||||
#
|
|
||||||
# lspconfig.noteslsp.setup{}
|
|
||||||
# ''
|
|
||||||
+ (builtins.readFile ./config.lua);
|
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
119
programs/nvim/editor-hax.py
Executable file
119
programs/nvim/editor-hax.py
Executable file
|
|
@ -0,0 +1,119 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
import subprocess
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import re
|
||||||
|
from urllib.parse import urlsplit
|
||||||
|
|
||||||
|
extract_line_regex = re.compile(r"(.*?)(?::([0-9]+))?(?::([0-9]+))?(:)?$")
|
||||||
|
|
||||||
|
main_editor = "nvim"
|
||||||
|
editors = [main_editor, "vim", "vi"]
|
||||||
|
real_editor = os.environ.get("REAL_EDITOR", None)
|
||||||
|
editor_command = main_editor
|
||||||
|
if real_editor is not None:
|
||||||
|
editors.append(real_editor)
|
||||||
|
editor_command = real_editor
|
||||||
|
|
||||||
|
def run(cmd, only_stdout=True):
|
||||||
|
res = subprocess.run(cmd, capture_output=True, text=True, shell=True)
|
||||||
|
if only_stdout:
|
||||||
|
return str(res.stdout)
|
||||||
|
else:
|
||||||
|
return res
|
||||||
|
|
||||||
|
def find_pane(window):
|
||||||
|
for editor in editors:
|
||||||
|
pane = run(f"tmux list-panes -a -f '#{{&&:#{{==:#{{window_id}},{window}}},#{{==:#{{pane_current_command}},{editor}}}}}' -F '#{{pane_id}}'").strip();
|
||||||
|
if pane != "":
|
||||||
|
return pane
|
||||||
|
|
||||||
|
def create_pane(args):
|
||||||
|
run(f'tmux split-window -h -P -F "#{{pane_id}}" {editor_command} {args}')
|
||||||
|
|
||||||
|
def find_or_create_pane(window, args):
|
||||||
|
if pane := find_pane(window):
|
||||||
|
# exit copy mode so we don't send these commands directly to tmux
|
||||||
|
run(f"tmux send-keys -t {pane} -X cancel")
|
||||||
|
# Escape for some reason doesn't get sent as the escape key if it shows up next to any other keys???
|
||||||
|
run(f"tmux send-keys -t {pane} Escape")
|
||||||
|
|
||||||
|
# note the space, this tells nvim not to save it in history
|
||||||
|
run(f"tmux send-keys -t {pane} \": drop {args}\" Enter")
|
||||||
|
run(f"tmux select-pane -t {pane} -Z")
|
||||||
|
else:
|
||||||
|
create_pane(args)
|
||||||
|
|
||||||
|
def split_line(filename):
|
||||||
|
mtch = extract_line_regex.match(filename)
|
||||||
|
file = mtch.group(1)
|
||||||
|
line = mtch.group(2)
|
||||||
|
column = mtch.group(3)
|
||||||
|
|
||||||
|
url = urlsplit(line)
|
||||||
|
if url.scheme == "file" and url.path != file:
|
||||||
|
file = url.path
|
||||||
|
|
||||||
|
file = os.path.abspath(file)
|
||||||
|
|
||||||
|
print(f"opening {file}:{line}:{column}")
|
||||||
|
return file, line, column
|
||||||
|
|
||||||
|
def join_line(filename, maybe_line, maybe_column):
|
||||||
|
assert not (maybe_line is None and maybe_column is not None)
|
||||||
|
|
||||||
|
if maybe_line is None:
|
||||||
|
return filename
|
||||||
|
|
||||||
|
if maybe_column is None:
|
||||||
|
maybe_column = "0"
|
||||||
|
|
||||||
|
return f"+normal!{maybe_line}G{maybe_column} {filename}"
|
||||||
|
|
||||||
|
def trim(arg):
|
||||||
|
if arg.startswith("\"") and not arg.endswith("\""):
|
||||||
|
arg = arg.lstrip("\"")
|
||||||
|
if arg.endswith("\"") and not arg.startswith("\""):
|
||||||
|
arg = arg.rstrip("\"")
|
||||||
|
return arg.strip()
|
||||||
|
|
||||||
|
def editor_hax(filename):
|
||||||
|
args = split_line(trim(filename))
|
||||||
|
current_window = run("tmux display-message -p \"#{window_id}\"").strip();
|
||||||
|
find_or_create_pane(current_window, join_line(*args))
|
||||||
|
|
||||||
|
def xdg_open(arg):
|
||||||
|
subprocess.run(f"xdg-open {trim(arg)}", shell=True)
|
||||||
|
|
||||||
|
def xdg_open_proxy(*args):
|
||||||
|
for arg in args:
|
||||||
|
try:
|
||||||
|
_file, line, _column = split_line(arg)
|
||||||
|
if line is not None:
|
||||||
|
editor_hax(arg)
|
||||||
|
else:
|
||||||
|
xdg_open(arg)
|
||||||
|
except:
|
||||||
|
xdg_open(arg)
|
||||||
|
|
||||||
|
|
||||||
|
def usage():
|
||||||
|
print(f"usage: {sys.argv[0]} filename:(line):(column)")
|
||||||
|
print(" Opens a file with line number and colum in the editor in another pane of the current tmux window")
|
||||||
|
print(f"usage: {sys.argv[0]} xdg-open-proxy filename:(line):(column)")
|
||||||
|
print(" Calls xdg-open on the given parameters. However, if any part contains a line number and or column, opens in nvim like editor-hax")
|
||||||
|
exit(1)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
if len(sys.argv) < 2:
|
||||||
|
usage()
|
||||||
|
elif sys.argv[1] == "xdg-open-proxy":
|
||||||
|
if len(sys.argv) < 3:
|
||||||
|
usage()
|
||||||
|
else:
|
||||||
|
xdg_open_proxy(*sys.argv[1:])
|
||||||
|
elif len(sys.argv) > 2:
|
||||||
|
usage()
|
||||||
|
else:
|
||||||
|
editor_hax(sys.argv[1])
|
||||||
|
|
||||||
|
|
@ -17,39 +17,23 @@ in
|
||||||
# splitting
|
# splitting
|
||||||
(map "n" "<leader>s" "<cmd>vertical sb<cr>")
|
(map "n" "<leader>s" "<cmd>vertical sb<cr>")
|
||||||
|
|
||||||
# closing
|
|
||||||
(map "n" "<leader>w" "<cmd>BufferClose<cr>") # single buffer
|
|
||||||
(map "n" "<leader>cb" "<cmd>BufferClose<cr>") # single buffer
|
|
||||||
|
|
||||||
(map "n" "<leader>ct" "<cmd>CloseBuffer<cr>") # buffer or extra tab
|
|
||||||
(map "n" "<leader>q" "<cmd>CloseBuffer<cr>") # buffer or extra tab
|
|
||||||
|
|
||||||
(map "n" "<leader>co" "<cmd>silent! BufferCloseAllButVisible<cr>") # other buffers
|
|
||||||
(map "n" "<leader>cl" "<cmd>silent! BufferCloseBuffersLeft<cr>") # other buffers (left)
|
|
||||||
(map "n" "<leader>cr" "<cmd>silent! BufferCloseBuffersRight<cr>") # other buffers (right)
|
|
||||||
|
|
||||||
# moving
|
|
||||||
(map "n" "mL" "<cmd>BufferMovePrevious<cr>") # left
|
|
||||||
(map "n" "mr" "<cmd>BufferMoveNext<cr>") # right
|
|
||||||
(map "n" "m0" "<cmd>BufferMoveStart<cr>") # start
|
|
||||||
(map "n" "m$" "<cmd>BufferMoveEnd<cr>") # end
|
|
||||||
|
|
||||||
(map "n" "<leader>jb" "<cmd>BufferPick<cr>") # jump to tab
|
|
||||||
|
|
||||||
# jumplist
|
# jumplist
|
||||||
# (map "n" "<leader><Tab>" "<C-o>")
|
(map "" "<C-a>" "<C-i>") # note: C-a is actually C-i, remapped through kitty.
|
||||||
# (map "n" "<leader><S-Tab>" "<C-i>")
|
|
||||||
(luamap "n" "<leader>r" "${telescope}.jumplist()")
|
(luamap "n" "<leader>r" "${telescope}.jumplist()")
|
||||||
|
(luamap "n" "<leader>R" "${telescope}.loclist()")
|
||||||
|
|
||||||
# pickers
|
# pickers
|
||||||
(luamap "n" "<leader><leader>" "${telescope}.find_files()")
|
(luamap "n" "<leader><leader>" "${telescope}.find_files()")
|
||||||
(luamap "n" "<leader>f" "${telescope}.live_grep()")
|
(luamap "n" "<leader>f" "${telescope}.live_grep()")
|
||||||
(luamap "n" "<leader>t" "${telescope}.lsp_document_symbols()")
|
(luamap "n" "<leader>t" "${telescope}.lsp_document_symbols()")
|
||||||
(luamap "n" "<leader>T" "${telescope}.lsp_dynamic_workspace_symbols()")
|
(luamap "n" "<leader>T" "${telescope}.lsp_dynamic_workspace_symbols()")
|
||||||
|
(luamap "n" "<leader>/" "${telescope}.current_buffer_fuzzy_find()")
|
||||||
# last used pickers/searches
|
# last used pickers/searches
|
||||||
(luamap "n" "<leader>h" "${telescope}.pickers()")
|
(luamap "n" "<leader>p" "${telescope}.pickers()")
|
||||||
|
(luamap "n" "<leader>m" "${telescope}.search_history()")
|
||||||
# open buffers
|
# open buffers
|
||||||
(luamap "n" "<leader>b" "${telescope}.buffers({sort_mru = true})")
|
(luamap "n" "<leader>b" "${telescope}.buffers({sort_mru = true})")
|
||||||
|
(luamap "n" "<leader><Tab>" "${telescope}.buffers({sort_mru = true})")
|
||||||
|
|
||||||
# diagnostics
|
# diagnostics
|
||||||
(map "n" "<leader>d" "<cmd>Trouble diagnostics toggle filter.buf=0<cr>")
|
(map "n" "<leader>d" "<cmd>Trouble diagnostics toggle filter.buf=0<cr>")
|
||||||
|
|
@ -69,26 +53,25 @@ in
|
||||||
# expand macro
|
# expand macro
|
||||||
(map "n" "<leader>em" "<cmd>RustLsp expandMacro<cr>")
|
(map "n" "<leader>em" "<cmd>RustLsp expandMacro<cr>")
|
||||||
|
|
||||||
# easier quitting etc
|
|
||||||
(map "ca" "W" "w")
|
|
||||||
(map "ca" "X" "x")
|
|
||||||
|
|
||||||
(map "ca" "Q" "CloseBuffer")
|
|
||||||
(map "ca" "q" "CloseBuffer")
|
|
||||||
|
|
||||||
# navigation
|
# navigation
|
||||||
(map "" "<leader><Left>" "<C-w><Left>")
|
(map "" "<leader><Left>" "<C-w><Left>")
|
||||||
(map "" "<leader><Right>" "<C-w><Right>")
|
(map "" "<leader><Right>" "<C-w><Right>")
|
||||||
(map "" "<leader><Up>" "<C-w><Up>")
|
(map "" "<leader><Up>" "<C-w><Up>")
|
||||||
(map "" "<leader><Down>" "<C-w><Down>")
|
(map "" "<leader><Down>" "<C-w><Down>")
|
||||||
(map "" "<leader><Down>" "<C-w><Down>")
|
(map "" "<leader>h" "<C-w><Left>")
|
||||||
|
(map "" "<leader>l" "<C-w><Right>")
|
||||||
|
(map "" "<leader>k" "<C-w><Up>")
|
||||||
|
(map "" "<leader>j" "<C-w><Down>")
|
||||||
|
|
||||||
|
# close buffer
|
||||||
|
(map "" "<leader>c" "<cmd>bd<cr>")
|
||||||
|
|
||||||
# {
|
# {
|
||||||
# key = "/";
|
# key = "/";
|
||||||
# action = "<cmd>lua require('spectre').open_file_search({select_word=true})<CR>";
|
# action = "<cmd>lua require('spectre').open_file_search({select_word=true})<CR>";
|
||||||
# }
|
# }
|
||||||
|
|
||||||
(map "n" "t" "<cmd>Neotree toggle<cr>")
|
# (map "n" "t" "<cmd>Neotree toggle<cr>")
|
||||||
|
|
||||||
# tab for indent/dedent
|
# tab for indent/dedent
|
||||||
(map "n" "<tab>" ">>_")
|
(map "n" "<tab>" ">>_")
|
||||||
|
|
@ -98,6 +81,9 @@ in
|
||||||
(map "v" "<S-tab>" "<gv")
|
(map "v" "<S-tab>" "<gv")
|
||||||
|
|
||||||
# to avoid many typos
|
# to avoid many typos
|
||||||
|
# easier quitting etc
|
||||||
(map "n" ";" ":")
|
(map "n" ";" ":")
|
||||||
|
(map "ca" "W" "w")
|
||||||
|
(map "ca" "X" "x")
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -84,5 +84,9 @@ _: {
|
||||||
"noselect"
|
"noselect"
|
||||||
"noinsert"
|
"noinsert"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# disable auto-folding
|
||||||
|
foldlevel = 99;
|
||||||
|
foldlevelstart = 99;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,15 +10,6 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
# fzy-lua-native = pkgs.vimUtils.buildVimPlugin {
|
|
||||||
# name = "fzy-lua-native";
|
|
||||||
# src = pkgs.fetchFromGitHub {
|
|
||||||
# owner = "romgrk";
|
|
||||||
# repo = "fzy-lua-native";
|
|
||||||
# rev = "9d720745d5c2fb563c0d86c17d77612a3519c506";
|
|
||||||
# hash = "sha256-pBV5iGa1+5gtM9BcDk8I5SKoQ9sydOJHsmyoBcxAct0=";
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
{
|
{
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
plugins = {
|
plugins = {
|
||||||
|
|
@ -168,7 +159,11 @@ in
|
||||||
crates.enable = true;
|
crates.enable = true;
|
||||||
fidget.enable = true;
|
fidget.enable = true;
|
||||||
nvim-autopairs.enable = true;
|
nvim-autopairs.enable = true;
|
||||||
# nvim-highlight-colors.enable = true;
|
spider.enable = true;
|
||||||
|
origami = {
|
||||||
|
enable = true;
|
||||||
|
settings.autofold.enabled = false;
|
||||||
|
};
|
||||||
|
|
||||||
cmp = {
|
cmp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -221,11 +216,15 @@ in
|
||||||
"<C-Space>" = "cmp.mapping.complete()";
|
"<C-Space>" = "cmp.mapping.complete()";
|
||||||
"<CR>" = "cmp.mapping.confirm({ select = true })";
|
"<CR>" = "cmp.mapping.confirm({ select = true })";
|
||||||
"<C-d>" = ''
|
"<C-d>" = ''
|
||||||
function()
|
function(fallback)
|
||||||
if cmp.visible_docs() then
|
if cmp.visible() then
|
||||||
cmp.close_docs()
|
if cmp.visible_docs() then
|
||||||
|
cmp.close_docs()
|
||||||
|
else
|
||||||
|
cmp.open_docs()
|
||||||
|
end
|
||||||
else
|
else
|
||||||
cmp.open_docs()
|
fallback()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
|
|
@ -270,7 +269,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
auto-session = {
|
auto-session = {
|
||||||
enable = true;
|
enable = false;
|
||||||
settings = {
|
settings = {
|
||||||
auto_save_enabled = true;
|
auto_save_enabled = true;
|
||||||
auto_restore_enabled = true;
|
auto_restore_enabled = true;
|
||||||
|
|
@ -288,7 +287,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
neo-tree = {
|
neo-tree = {
|
||||||
enable = true;
|
enable = false;
|
||||||
settings = {
|
settings = {
|
||||||
close_if_last_window = true;
|
close_if_last_window = true;
|
||||||
enable_git_status = false;
|
enable_git_status = false;
|
||||||
|
|
@ -660,7 +659,7 @@ in
|
||||||
return wilder.renderer_mux({
|
return wilder.renderer_mux({
|
||||||
[':'] = popupmenu_renderer,
|
[':'] = popupmenu_renderer,
|
||||||
['/'] = wildmenu_renderer,
|
['/'] = wildmenu_renderer,
|
||||||
substitute = wildmenu_renderer,
|
substitute = wildmenu_enderer,
|
||||||
})
|
})
|
||||||
end)()
|
end)()
|
||||||
'';
|
'';
|
||||||
|
|
@ -695,7 +694,7 @@ in
|
||||||
];
|
];
|
||||||
defaults = {
|
defaults = {
|
||||||
path_display = [ "smart" ];
|
path_display = [ "smart" ];
|
||||||
layout_strategy = "horizontal";
|
layout_strategy = "flex";
|
||||||
layout_config = {
|
layout_config = {
|
||||||
width = 0.99;
|
width = 0.99;
|
||||||
height = 0.99;
|
height = 0.99;
|
||||||
|
|
@ -709,15 +708,6 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# tabs
|
|
||||||
barbar = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
options.diagnostics = "nvim_lsp";
|
|
||||||
focus_on_close = "previous";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# for lsp/cmp inside markdown code blocks
|
# for lsp/cmp inside markdown code blocks
|
||||||
otter = {
|
otter = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,170 +1,207 @@
|
||||||
_: {
|
inputs@{ machine, ... }:
|
||||||
custom.program.tmux.requirements = [ "cli" ];
|
{
|
||||||
custom.program.tmux.home-config =
|
imports = machine.program {
|
||||||
{ pkgs, ... }:
|
name = "tmux";
|
||||||
{
|
inherit inputs;
|
||||||
programs.tmux = {
|
requirements = [ "cli" ];
|
||||||
enable = true;
|
home-config =
|
||||||
mouse = true;
|
{ pkgs, ... }:
|
||||||
clock24 = true;
|
{
|
||||||
|
programs.tmux = {
|
||||||
|
enable = true;
|
||||||
|
mouse = true;
|
||||||
|
clock24 = true;
|
||||||
|
|
||||||
shortcut = "k";
|
shortcut = "k";
|
||||||
|
|
||||||
plugins = with pkgs; [
|
plugins = with pkgs; [
|
||||||
{
|
{
|
||||||
plugin = tmuxPlugins.mkTmuxPlugin {
|
plugin = tmuxPlugins.mkTmuxPlugin {
|
||||||
pluginName = "suspend";
|
pluginName = "suspend";
|
||||||
version = "1a2f806";
|
version = "1a2f806";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "MunifTanjim";
|
owner = "MunifTanjim";
|
||||||
repo = "tmux-suspend";
|
repo = "tmux-suspend";
|
||||||
rev = "1a2f806666e0bfed37535372279fa00d27d50d14";
|
rev = "1a2f806666e0bfed37535372279fa00d27d50d14";
|
||||||
sha256 = "0j7vjrwc7gniwkv1076q3wc8ccwj42zph5wdmsm9ibz6029wlmzv";
|
sha256 = "0j7vjrwc7gniwkv1076q3wc8ccwj42zph5wdmsm9ibz6029wlmzv";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
extraConfig = ''
|
||||||
extraConfig = ''
|
set -g @suspend_key 'F11'
|
||||||
set -g @suspend_key 'F11'
|
'';
|
||||||
'';
|
}
|
||||||
}
|
{
|
||||||
{
|
plugin = tmuxPlugins.mode-indicator;
|
||||||
plugin = tmuxPlugins.mode-indicator;
|
}
|
||||||
}
|
];
|
||||||
];
|
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
# unbind every single normal keybinding
|
# unbind every single normal keybinding
|
||||||
unbind-key -a
|
unbind-key -a
|
||||||
|
|
||||||
# for special characters to work right
|
set -g status-left "#{?client_prefix,#[bg=colour2],#[bg=colour1]}#[fg=colour0] #S "
|
||||||
# like <C-_>
|
|
||||||
# set-window-option -g xterm-keys on
|
|
||||||
set -g default-terminal "screen-256color"
|
|
||||||
|
|
||||||
set -g set-titles on
|
# for special characters to work right
|
||||||
set -g allow-passthrough on
|
# like <C-_>
|
||||||
set -s escape-time 0
|
# set-window-option -g xterm-keys on
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
|
||||||
set-option -g default-shell ${pkgs.fish}/bin/fish
|
set -g set-titles on
|
||||||
set -ga terminal-features "\*:hyperlinks"
|
set -g allow-passthrough on
|
||||||
|
set -s escape-time 0
|
||||||
|
|
||||||
set-window-option -g mode-keys vi
|
set-option -g default-shell ${pkgs.fish}/bin/fish
|
||||||
|
set -ga terminal-features "\*:hyperlinks"
|
||||||
|
|
||||||
# clipboard stuff
|
set-window-option -g mode-keys vi
|
||||||
bind -T copy-mode-vi v send-keys -X begin-selection
|
|
||||||
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel
|
|
||||||
bind v copy-mode
|
|
||||||
bind p paste-buffer -p
|
|
||||||
set -s set-clipboard on
|
|
||||||
|
|
||||||
# get back normal terminal emulator bindings
|
# clipboard stuff
|
||||||
bind-key -n S-PPage copy-mode -u
|
bind -T copy-mode-vi v send-keys -X begin-selection
|
||||||
bind-key -T copy-mode -n S-NPage send-keys -X page-down
|
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel
|
||||||
|
bind v copy-mode
|
||||||
|
bind p paste-buffer -p
|
||||||
|
set -s set-clipboard on
|
||||||
|
|
||||||
# don't scroll to end when copying with mouse
|
# get back normal terminal emulator bindings
|
||||||
bind-key -T copy-mode MouseDragEnd1Pane send-keys -X copy-pipe
|
bind-key -n S-PPage copy-mode -u
|
||||||
bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe
|
bind-key -T copy-mode -n S-NPage send-keys -X page-down
|
||||||
bind-key -T copy-mode DoubleClick1Pane select-pane \; send-keys -X select-word \; run-shell -d 0.3 \; send-keys -X copy-pipe
|
|
||||||
bind-key -T copy-mode TripleClick1Pane select-pane \; send-keys -X select-line \; run-shell -d 0.3 \; send-keys -X copy-pipe
|
|
||||||
bind-key -T copy-mode-vi DoubleClick1Pane select-pane \; send-keys -X select-word \; run-shell -d 0.3 \; send-keys -X copy-pipe
|
|
||||||
bind-key -T copy-mode-vi TripleClick1Pane select-pane \; send-keys -X select-line \; run-shell -d 0.3 \; send-keys -X copy-pipe
|
|
||||||
|
|
||||||
# window control
|
# don't scroll to end when copying with mouse
|
||||||
bind t new-window -c "#{pane_current_path}"
|
bind-key -T copy-mode MouseDragEnd1Pane send-keys -X copy-pipe
|
||||||
bind-key Tab next-window
|
bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe
|
||||||
bind-key BTab previous-window
|
bind-key -T copy-mode DoubleClick1Pane select-pane \; send-keys -X select-word \; run-shell -d 0.3 \; send-keys -X copy-pipe
|
||||||
set -g automatic-rename-format "#{?#{==:#{pane_current_path},$HOME},~,#{b:pane_current_path}} (#{pane_current_command})"
|
bind-key -T copy-mode TripleClick1Pane select-pane \; send-keys -X select-line \; run-shell -d 0.3 \; send-keys -X copy-pipe
|
||||||
set -g renumber-windows on
|
bind-key -T copy-mode-vi DoubleClick1Pane select-pane \; send-keys -X select-word \; run-shell -d 0.3 \; send-keys -X copy-pipe
|
||||||
bind-key Q confirm-before -p "kill-window #W? (y/n)" kill-window
|
bind-key -T copy-mode-vi TripleClick1Pane select-pane \; send-keys -X select-line \; run-shell -d 0.3 \; send-keys -X copy-pipe
|
||||||
bind A last-window
|
|
||||||
|
|
||||||
bind-key 1 select-window -t :0
|
# window control
|
||||||
bind-key 2 select-window -t :1
|
bind t new-window -c "#{pane_current_path}"
|
||||||
bind-key 3 select-window -t :2
|
bind-key Tab next-window
|
||||||
bind-key 4 select-window -t :3
|
bind-key BTab previous-window
|
||||||
bind-key 5 select-window -t :4
|
set -g automatic-rename-format "#{?#{==:#{pane_current_path},$HOME},~,#{b:pane_current_path}} (#{pane_current_command})"
|
||||||
bind-key 6 select-window -t :5
|
set -g renumber-windows on
|
||||||
bind-key 7 select-window -t :6
|
bind-key Q confirm-before -p "kill-window #W? (y/n)" kill-window
|
||||||
bind-key 8 select-window -t :7
|
bind A last-window
|
||||||
bind-key 9 select-window -t :8
|
|
||||||
bind-key 0 select-window -t :9
|
|
||||||
|
|
||||||
# pane control
|
bind-key 1 select-window -t :0
|
||||||
bind h select-pane -L
|
bind-key 2 select-window -t :1
|
||||||
bind j select-pane -D
|
bind-key 3 select-window -t :2
|
||||||
bind k select-pane -U
|
bind-key 4 select-window -t :3
|
||||||
bind l select-pane -R
|
bind-key 5 select-window -t :4
|
||||||
bind L split-window -h -c "#{pane_current_path}"
|
bind-key 6 select-window -t :5
|
||||||
bind J split-window -v -c "#{pane_current_path}"
|
bind-key 7 select-window -t :6
|
||||||
bind H split-window -h -b -c "#{pane_current_path}"
|
bind-key 8 select-window -t :7
|
||||||
bind K split-window -v -b -c "#{pane_current_path}"
|
bind-key 9 select-window -t :8
|
||||||
bind x swap-pane -D
|
bind-key 0 select-window -t :9
|
||||||
|
|
||||||
# double-click ^k (or lshift with kanata) for previous pane like ^w in vim
|
# pane control
|
||||||
bind -r ^k select-pane -l
|
bind h select-pane -L
|
||||||
bind-key q confirm-before -p "kill-pane #P? (y/n)" kill-pane
|
bind j select-pane -D
|
||||||
|
bind k select-pane -U
|
||||||
|
bind l select-pane -R
|
||||||
|
bind Left select-pane -L
|
||||||
|
bind Down select-pane -D
|
||||||
|
bind Up select-pane -U
|
||||||
|
bind Right select-pane -R
|
||||||
|
bind L split-window -h -c "#{pane_current_path}"
|
||||||
|
bind J split-window -v -c "#{pane_current_path}"
|
||||||
|
bind H split-window -h -b -c "#{pane_current_path}"
|
||||||
|
bind K split-window -v -b -c "#{pane_current_path}"
|
||||||
|
bind S-Left split-window -h -c "#{pane_current_path}"
|
||||||
|
bind S-Down split-window -v -c "#{pane_current_path}"
|
||||||
|
bind S-Up split-window -h -b -c "#{pane_current_path}"
|
||||||
|
bind S-Right split-window -v -b -c "#{pane_current_path}"
|
||||||
|
bind-key -r -T prefix M-h resize-pane -L 5
|
||||||
|
bind-key -r -T prefix M-j resize-pane -D 5
|
||||||
|
bind-key -r -T prefix M-k resize-pane -U 5
|
||||||
|
bind-key -r -T prefix M-l resize-pane -R 5
|
||||||
|
bind x swap-pane -D
|
||||||
|
|
||||||
bind-key o choose-tree -wZ
|
# double-click ^k (or lshift with kanata) for previous pane like ^w in vim
|
||||||
bind-key O choose-tree -sZ
|
bind -r ^k select-pane -l
|
||||||
|
bind-key q confirm-before -p "kill-pane #P? (y/n)" kill-pane
|
||||||
|
|
||||||
# get back command mode and some other basics...
|
# bind-key o choose-tree -wZ
|
||||||
bind : command-prompt
|
# bind-key O choose-tree -sZ
|
||||||
bind r source-file ~/.config/tmux/tmux.conf \; display "config reloaded"
|
|
||||||
bind-key ? list-keys
|
|
||||||
|
|
||||||
# Scroll oin man etc
|
# get back command mode and some other basics...
|
||||||
tmux_commands_with_legacy_scroll="nano less more man git"
|
bind : command-prompt
|
||||||
|
bind r source-file ~/.config/tmux/tmux.conf \; display "config reloaded"
|
||||||
|
bind-key ? list-keys
|
||||||
|
|
||||||
bind-key -T root WheelUpPane \
|
# Scroll oin man etc
|
||||||
if-shell -Ft= '#{?mouse_any_flag,1,#{pane_in_mode}}' \
|
tmux_commands_with_legacy_scroll="nano less more man git"
|
||||||
'send -Mt=' \
|
|
||||||
'if-shell -t= "#{?alternate_on,true,false} || echo \"#{tmux_commands_with_legacy_scroll}\" | grep -q \"#{pane_current_command}\"" \
|
|
||||||
"send -t= Up" "copy-mode -et="'
|
|
||||||
|
|
||||||
bind-key -T root WheelDownPane \
|
bind-key -T root WheelUpPane \
|
||||||
if-shell -Ft = '#{?pane_in_mode,1,#{mouse_any_flag}}' \
|
if-shell -Ft= '#{?mouse_any_flag,1,#{pane_in_mode}}' \
|
||||||
'send -Mt=' \
|
'send -Mt=' \
|
||||||
'if-shell -t= "#{?alternate_on,true,false} || echo \"#{tmux_commands_with_legacy_scroll}\" | grep -q \"#{pane_current_command}\"" \
|
'if-shell -t= "#{?alternate_on,true,false} || echo \"#{tmux_commands_with_legacy_scroll}\" | grep -q \"#{pane_current_command}\"" \
|
||||||
"send -t= Down" "send -Mt="'
|
"send -t= Up" "copy-mode -et="'
|
||||||
|
|
||||||
bind-key -T copy-mode-vi ] \
|
bind-key -T root WheelDownPane \
|
||||||
send-keys -X clear-selection \; \
|
if-shell -Ft = '#{?pane_in_mode,1,#{mouse_any_flag}}' \
|
||||||
send-keys -X search-forward "--> " \; \
|
'send -Mt=' \
|
||||||
send-keys -X next-word \; \
|
'if-shell -t= "#{?alternate_on,true,false} || echo \"#{tmux_commands_with_legacy_scroll}\" | grep -q \"#{pane_current_command}\"" \
|
||||||
send-keys -X begin-selection \; \
|
"send -t= Down" "send -Mt="'
|
||||||
send-keys -X jump-forward ":" \; \
|
|
||||||
send-keys -X jump-to-forward ":" \;
|
|
||||||
|
|
||||||
bind-key -T copy-mode-vi [ \
|
bind-key -T copy-mode-vi ] \
|
||||||
send-keys -X clear-selection \; \
|
send-keys -X clear-selection \; \
|
||||||
send-keys -X start-of-line \; \
|
send-keys -X search-forward "--> " \; \
|
||||||
send-keys -X search-backward "--> " \; \
|
send-keys -X next-word \; \
|
||||||
send-keys -X next-word \; \
|
send-keys -X begin-selection \; \
|
||||||
send-keys -X begin-selection \; \
|
send-keys -X jump-forward ":" \; \
|
||||||
send-keys -X jump-forward ":" \; \
|
send-keys -X jump-to-forward ":" \;
|
||||||
send-keys -X jump-to-forward ":" \;
|
|
||||||
|
|
||||||
bind-key [ copy-mode \; send-keys [
|
bind-key -T copy-mode-vi [ \
|
||||||
bind-key ] copy-mode \; send-keys ]
|
send-keys -X clear-selection \; \
|
||||||
|
send-keys -X start-of-line \; \
|
||||||
|
send-keys -X search-backward "--> " \; \
|
||||||
|
send-keys -X next-word \; \
|
||||||
|
send-keys -X begin-selection \; \
|
||||||
|
send-keys -X jump-forward ":" \; \
|
||||||
|
send-keys -X jump-to-forward ":" \;
|
||||||
|
|
||||||
bind d select-pane -l \; send-keys [
|
bind-key [ copy-mode \; send-keys [
|
||||||
|
bind-key ] copy-mode \; send-keys ]
|
||||||
|
|
||||||
'';
|
bind d select-pane -l \; send-keys [
|
||||||
|
|
||||||
|
# f: file search
|
||||||
|
# unbound: git files
|
||||||
|
# g: git hashes
|
||||||
|
# u: urls
|
||||||
|
# C-d: numbers
|
||||||
|
# M-i: ips
|
||||||
|
# include line and column numbers in file search
|
||||||
|
# rebind `f` so we can reuse it here
|
||||||
|
bind-key -T prefix C-f command-prompt { find-window -Z "%%" }
|
||||||
|
# jyn is so sorry, and so am I now
|
||||||
|
# https://github.com/jyn514/dotfiles/blob/65be3c004113290f41f858f4d7f1a6799fabab19/config/tmux.conf#L203-L212
|
||||||
|
# see `search-regex.sh` for wtf this means
|
||||||
|
# TODO: include shell variable names
|
||||||
|
bind-key f copy-mode \; send-keys -X search-backward '(^|/|\<|[[:space:]"])((\.|\.\.)|[[:alnum:]~_"-]*)((/[][[:alnum:]_.#$%&+=@"-]+)+([/ "]|\.([][[:alnum:]_.#$%&+=@"-]+(:[0-9]+)?(:[0-9]+)?)|[][[:alnum:]_.#$%&+=@"-]+(:[0-9]+)(:[0-9]+)?)|(/[][[:alnum:]_.#$%&+=@"-]+){2,}([/ "]|\.([][[:alnum:]_.#$%&+=@"-]+(:[0-9]+)?(:[0-9]+)?)|[][[:alnum:]_.#$%&+=@"-]+(:[0-9]+)(:[0-9]+)?)?|(\.|\.\.)/([][[:alnum:]_.#$%&+=@"-]+(:[0-9]+)?(:[0-9]+)?))'
|
||||||
|
# urls
|
||||||
|
bind-key u copy-mode \; send-keys -X search-backward '(https?://|git@|git://|ssh://|ftp://|file:///)[[:alnum:]?=%/_.:,;~@!#$&*+-]*'
|
||||||
|
# hashes
|
||||||
|
bind-key g copy-mode \; send-keys -X search-backward '[[:<:]]([0-9a-f]{7,40}|[[:alnum:]]{52}|[0-9a-f]{64})[[:>:]]'
|
||||||
|
# ips
|
||||||
|
bind-key M-i copy-mode \; send-keys -X search-backward '[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}'
|
||||||
|
|
||||||
|
bind-key -T copy-mode-vi o send-keys -X copy-pipe \
|
||||||
|
'cd #{pane_current_path}; xargs -I {} echo "echo {}" | bash | xargs ${../nvim/editor-hax.py} xdg-open-proxy' \; \
|
||||||
|
if -F "#{alternate_on}" { send-keys -X cancel }
|
||||||
|
# save the buffer, then open an editor in the current pane
|
||||||
|
bind-key -T copy-mode-vi O send-keys -X copy-pipe-and-cancel \
|
||||||
|
'tmux send-keys "C-q"; xargs -I {} tmux send-keys "vim {}"; tmux send-keys "C-m"'
|
||||||
|
# search for the highlighted text
|
||||||
|
bind-key -T copy-mode-vi s send-keys -X copy-pipe \
|
||||||
|
"cd #{pane_current_path}; xargs -I {} open 'https://www.google.com/search?q={}'" \; \
|
||||||
|
if -F "#{alternate_on}" { send-keys -X cancel }
|
||||||
|
# save buffer and retype into the shell
|
||||||
|
bind-key -T copy-mode-vi Tab send-keys -X copy-selection-and-cancel \; paste-buffer -p
|
||||||
|
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
# bind-key -T root DoubleClick1Pane run-shell "cd '#{pane_current_path}'; echo '#{mouse_line}' | ${pkgs.writeScriptBin "open-file" ''
|
};
|
||||||
# open_file () {
|
|
||||||
# input=`cat`
|
|
||||||
# link=$(echo "$input" | grep -Po '[^ \\]*/[^ \\]*\.[^ \\]*\:[0-9]+' | sed 's/\:/|/g')
|
|
||||||
#
|
|
||||||
# if [ ! -z "$link" ]; then
|
|
||||||
# echo "LINK = $link"
|
|
||||||
# vim_proc=$(pgrep vim | xargs pwdx | grep $(pwd -P) | awk '{print $1}' | sed 's/\:*$//g' | xargs -I{} find /run/user/1000 -depth -maxdepth 1 -name "nvim.{}.0")
|
|
||||||
#
|
|
||||||
# nvim --server "$vim_proc" --remote-send "<C-\><C-N>:e $link<cr>"
|
|
||||||
# fi
|
|
||||||
# }
|
|
||||||
#
|
|
||||||
# open_file 2>&1 >> ~/open-file.log
|
|
||||||
#
|
|
||||||
# ''}/bin/open-file"
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
159
programs/xdg.nix
Normal file
159
programs/xdg.nix
Normal file
|
|
@ -0,0 +1,159 @@
|
||||||
|
{ machine, ... }@inputs:
|
||||||
|
let
|
||||||
|
browsers = [
|
||||||
|
"firefox.desktop"
|
||||||
|
];
|
||||||
|
|
||||||
|
defaultApps = {
|
||||||
|
text = [
|
||||||
|
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanvim.desktop"
|
||||||
|
];
|
||||||
|
image = [ "org.gnome.Loupe.desktop" ];
|
||||||
|
audio = [ "mpv.desktop" ];
|
||||||
|
video = [ "mpv.desktop" ];
|
||||||
|
directory = [
|
||||||
|
"nautilus.desktop"
|
||||||
|
"org.gnome.Nautilus.desktop"
|
||||||
|
];
|
||||||
|
mail = [ ] ++ browsers;
|
||||||
|
calendar = [ ] ++ browsers;
|
||||||
|
browser = [ ] ++ browsers;
|
||||||
|
office = [ "libreoffice.desktop" ];
|
||||||
|
pdf = [ ] ++ browsers;
|
||||||
|
ebook = [ ];
|
||||||
|
magnet = [ ];
|
||||||
|
signal = [ "signal.desktop" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
mimeMap = {
|
||||||
|
text = [
|
||||||
|
"text/plain"
|
||||||
|
"text/english"
|
||||||
|
"application/x-zerosize"
|
||||||
|
"text/x-makefile"
|
||||||
|
"text/x-c++hdr"
|
||||||
|
"text/x-c++src"
|
||||||
|
"text/x-chdr"
|
||||||
|
"text/x-csrc"
|
||||||
|
"text/x-java"
|
||||||
|
"text/x-moc"
|
||||||
|
"text/x-pascal"
|
||||||
|
"text/x-tcl"
|
||||||
|
"text/x-tex"
|
||||||
|
"application/x-shellscript"
|
||||||
|
"text/x-c"
|
||||||
|
"text/x-c++"
|
||||||
|
];
|
||||||
|
image = [
|
||||||
|
"image/bmp"
|
||||||
|
"image/gif"
|
||||||
|
"image/jpeg"
|
||||||
|
"image/jpg"
|
||||||
|
"image/png"
|
||||||
|
"image/svg+xml"
|
||||||
|
"image/tiff"
|
||||||
|
"image/vnd.microsoft.icon"
|
||||||
|
"image/webp"
|
||||||
|
];
|
||||||
|
audio = [
|
||||||
|
"audio/aac"
|
||||||
|
"audio/mpeg"
|
||||||
|
"audio/ogg"
|
||||||
|
"audio/opus"
|
||||||
|
"audio/wav"
|
||||||
|
"audio/webm"
|
||||||
|
"audio/x-matroska"
|
||||||
|
];
|
||||||
|
video = [
|
||||||
|
"video/mp2t"
|
||||||
|
"video/mp4"
|
||||||
|
"video/mpeg"
|
||||||
|
"video/ogg"
|
||||||
|
"video/webm"
|
||||||
|
"video/x-flv"
|
||||||
|
"video/x-matroska"
|
||||||
|
"video/x-msvideo"
|
||||||
|
];
|
||||||
|
directory = [ "inode/directory" ];
|
||||||
|
mail = [ "x-scheme-handler/mailto" ];
|
||||||
|
calendar = [
|
||||||
|
"text/calendar"
|
||||||
|
"x-scheme-handler/webcal"
|
||||||
|
];
|
||||||
|
browser = [
|
||||||
|
"text/html"
|
||||||
|
"x-scheme-handler/about"
|
||||||
|
"x-scheme-handler/http"
|
||||||
|
"x-scheme-handler/https"
|
||||||
|
"x-scheme-handler/unknown"
|
||||||
|
];
|
||||||
|
office = [
|
||||||
|
"application/vnd.oasis.opendocument.text"
|
||||||
|
"application/vnd.oasis.opendocument.spreadsheet"
|
||||||
|
"application/vnd.oasis.opendocument.presentation"
|
||||||
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document"
|
||||||
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
|
||||||
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation"
|
||||||
|
"application/msword"
|
||||||
|
"application/vnd.ms-excel"
|
||||||
|
"application/vnd.ms-powerpoint"
|
||||||
|
"application/rtf"
|
||||||
|
];
|
||||||
|
pdf = [ "application/pdf" ];
|
||||||
|
ebook = [ "application/epub+zip" ];
|
||||||
|
magnet = [ "x-scheme-handler/magnet" ];
|
||||||
|
signal = [ "signal.desktop" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
associations =
|
||||||
|
with inputs.lib;
|
||||||
|
with builtins;
|
||||||
|
listToAttrs (
|
||||||
|
flatten (mapAttrsToList (key: map (type: attrsets.nameValuePair type defaultApps."${key}")) mimeMap)
|
||||||
|
);
|
||||||
|
removedAssociations = {
|
||||||
|
"text/plain" = "dev.zed.Zed.desktop";
|
||||||
|
"application/x-zerosize" = "dev.zed.Zed.desktop";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
imports = machine.program {
|
||||||
|
name = "xdg";
|
||||||
|
inherit inputs;
|
||||||
|
requirements = [ ];
|
||||||
|
home-config =
|
||||||
|
{ config, ... }:
|
||||||
|
{
|
||||||
|
xdg = {
|
||||||
|
enable = true;
|
||||||
|
mime.enable = true;
|
||||||
|
configHome = "${config.home.homeDirectory}/.config";
|
||||||
|
userDirs = {
|
||||||
|
enable = true;
|
||||||
|
documents = "${config.home.homeDirectory}/Documents";
|
||||||
|
desktop = "${config.home.homeDirectory}/Documents";
|
||||||
|
download = "${config.home.homeDirectory}/Downloads";
|
||||||
|
music = "${config.home.homeDirectory}/Documents/personal/music";
|
||||||
|
pictures = "${config.home.homeDirectory}/Documents/personal/pictures";
|
||||||
|
};
|
||||||
|
configFile."mimeapps.list".force = true;
|
||||||
|
mimeApps = {
|
||||||
|
enable = true;
|
||||||
|
associations.added = associations;
|
||||||
|
associations.removed = removedAssociations;
|
||||||
|
defaultApplications = associations;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
system-config = _: {
|
||||||
|
xdg = {
|
||||||
|
mime = {
|
||||||
|
enable = true;
|
||||||
|
defaultApplications = associations;
|
||||||
|
addedAssociations = associations;
|
||||||
|
inherit removedAssociations;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1,173 +1,184 @@
|
||||||
_: {
|
inputs@{ machine, ... }:
|
||||||
custom.program.zed.requirements = [ "work" ];
|
{
|
||||||
custom.program.zed.home-config =
|
imports = machine.program {
|
||||||
{ pkgs, ... }:
|
name = "zed";
|
||||||
{
|
inherit inputs;
|
||||||
home.packages = pkgs.custom.maple-fonts-pack;
|
requirements = [
|
||||||
|
"work"
|
||||||
|
"graphical"
|
||||||
|
];
|
||||||
|
home-config =
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = pkgs.custom.maple-fonts-pack;
|
||||||
|
|
||||||
programs.zed-editor = {
|
programs.zed-editor = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extensions = [
|
extensions = [
|
||||||
"nix"
|
"nix"
|
||||||
"intellij-newui-theme"
|
"intellij-newui-theme"
|
||||||
"charmed-icons"
|
"charmed-icons"
|
||||||
"astro"
|
"astro"
|
||||||
];
|
|
||||||
userSettings = {
|
|
||||||
|
|
||||||
ssh_connections = [
|
|
||||||
{
|
|
||||||
host = "icecube";
|
|
||||||
args = [ ];
|
|
||||||
projects = [
|
|
||||||
{
|
|
||||||
paths = [
|
|
||||||
"/home/jana/src/eii-test"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
paths = [
|
|
||||||
"/home/jana/src/example"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
paths = [
|
|
||||||
"/home/jana/src/fitgirl-ddl"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
paths = [
|
|
||||||
"/home/jana/src/libs-team/tools/unstable-api"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
paths = [
|
|
||||||
"/home/jana/src/ml-kem-hang"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
paths = [
|
|
||||||
"/home/jana/src/opendal/core"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
paths = [
|
|
||||||
"/home/jana/src/rust"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
paths = [
|
|
||||||
"/home/jana/src/span-lowering-tests"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
icon_theme = "Warm Charmed Icons";
|
userSettings = {
|
||||||
ui_font_size = 16;
|
|
||||||
buffer_font_size = 16;
|
|
||||||
theme = {
|
|
||||||
mode = "system";
|
|
||||||
light = "One Light";
|
|
||||||
dark = "JetBrains New Dark";
|
|
||||||
};
|
|
||||||
disable_ai = true;
|
|
||||||
|
|
||||||
preview_tabs = {
|
ssh_connections = [
|
||||||
enabled = true;
|
{
|
||||||
enable_preview_from_file_finder = true;
|
host = "icecube";
|
||||||
};
|
args = [ ];
|
||||||
|
projects = [
|
||||||
close_on_file_delete = true;
|
{
|
||||||
confirm_quit = true;
|
paths = [
|
||||||
|
"/home/jana/src/eii-test"
|
||||||
edit_predictions_disabled_in = [
|
];
|
||||||
"comment"
|
}
|
||||||
"string"
|
{
|
||||||
];
|
paths = [
|
||||||
|
"/home/jana/src/example"
|
||||||
vim_mode = true;
|
];
|
||||||
cursor_blink = false;
|
}
|
||||||
vertical_scroll_margin = 0;
|
{
|
||||||
|
paths = [
|
||||||
inlay_hints = {
|
"/home/jana/src/fitgirl-ddl"
|
||||||
enabled = true;
|
];
|
||||||
};
|
}
|
||||||
|
{
|
||||||
project_panel = {
|
paths = [
|
||||||
dock = "right";
|
"/home/jana/src/libs-team/tools/unstable-api"
|
||||||
git_status = false;
|
];
|
||||||
};
|
}
|
||||||
minimap = {
|
{
|
||||||
show = "auto";
|
paths = [
|
||||||
thumb = "always";
|
"/home/jana/src/ml-kem-hang"
|
||||||
thumb_border = "left_open";
|
];
|
||||||
};
|
}
|
||||||
tab_bar = {
|
{
|
||||||
show = true;
|
paths = [
|
||||||
show_nav_history_buttons = false;
|
"/home/jana/src/opendal/core"
|
||||||
show_tab_bar_buttons = false;
|
];
|
||||||
};
|
}
|
||||||
tabs = {
|
{
|
||||||
file_icons = true;
|
paths = [
|
||||||
git_status = false;
|
"/home/jana/src/rust"
|
||||||
activate_on_close = "history";
|
];
|
||||||
show_close_button = "hover";
|
}
|
||||||
};
|
{
|
||||||
lsp = {
|
paths = [
|
||||||
rust-analyzer = {
|
"/home/jana/src/span-lowering-tests"
|
||||||
initialization_options = {
|
];
|
||||||
inlayHints = {
|
}
|
||||||
lifetimeElisionHints = "always";
|
];
|
||||||
discriminantHints = "always";
|
}
|
||||||
};
|
];
|
||||||
diagnostic = {
|
icon_theme = "Warm Charmed Icons";
|
||||||
refreshSupport = true;
|
ui_font_size = 16;
|
||||||
};
|
buffer_font_size = 16;
|
||||||
};
|
theme = {
|
||||||
|
mode = "system";
|
||||||
|
light = "One Light";
|
||||||
|
dark = "JetBrains New Dark";
|
||||||
};
|
};
|
||||||
nil = {
|
disable_ai = true;
|
||||||
binary = {
|
|
||||||
ignore_system_version = false;
|
|
||||||
path = "${pkgs.lib.getExe' pkgs.nil "nil"}";
|
|
||||||
};
|
|
||||||
|
|
||||||
initialization_options = {
|
preview_tabs = {
|
||||||
formatting = {
|
enabled = true;
|
||||||
command = [ "${pkgs.lib.getExe' pkgs.nixfmt "nixfmt"}" ];
|
enable_preview_from_file_finder = true;
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
|
||||||
diagnostics = {
|
close_on_file_delete = true;
|
||||||
button = false;
|
confirm_quit = true;
|
||||||
include_warnings = true;
|
|
||||||
inline = {
|
edit_predictions_disabled_in = [
|
||||||
|
"comment"
|
||||||
|
"string"
|
||||||
|
];
|
||||||
|
|
||||||
|
vim_mode = true;
|
||||||
|
cursor_blink = false;
|
||||||
|
vertical_scroll_margin = 0;
|
||||||
|
|
||||||
|
inlay_hints = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
};
|
};
|
||||||
};
|
|
||||||
terminal = {
|
project_panel = {
|
||||||
"dock" = "left";
|
dock = "right";
|
||||||
"env" = {
|
git_status = false;
|
||||||
# "EDITOR": "zeditor --wait"
|
|
||||||
"EDITOR" = "vim";
|
|
||||||
};
|
};
|
||||||
"font_size" = 12;
|
minimap = {
|
||||||
"font_family" = "Maple Mono NF";
|
show = "auto";
|
||||||
"line_height" = "standard";
|
thumb = "always";
|
||||||
};
|
thumb_border = "left_open";
|
||||||
buffer_font_family = "Maple Mono NF";
|
};
|
||||||
|
tab_bar = {
|
||||||
|
show = true;
|
||||||
|
show_nav_history_buttons = false;
|
||||||
|
show_tab_bar_buttons = false;
|
||||||
|
};
|
||||||
|
tabs = {
|
||||||
|
file_icons = true;
|
||||||
|
git_status = false;
|
||||||
|
activate_on_close = "history";
|
||||||
|
show_close_button = "hover";
|
||||||
|
};
|
||||||
|
lsp = {
|
||||||
|
rust-analyzer = {
|
||||||
|
initialization_options = {
|
||||||
|
inlayHints = {
|
||||||
|
lifetimeElisionHints = "always";
|
||||||
|
discriminantHints = "always";
|
||||||
|
};
|
||||||
|
diagnostic = {
|
||||||
|
refreshSupport = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
binary = {
|
||||||
|
path_lookup = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
nil = {
|
||||||
|
binary = {
|
||||||
|
ignore_system_version = false;
|
||||||
|
path = "${pkgs.lib.getExe' pkgs.nil "nil"}";
|
||||||
|
};
|
||||||
|
|
||||||
# "diagnostics_max_severity": "off",
|
initialization_options = {
|
||||||
|
formatting = {
|
||||||
|
command = [ "${pkgs.lib.getExe' pkgs.nixfmt "nixfmt"}" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
diagnostics = {
|
||||||
|
button = false;
|
||||||
|
include_warnings = true;
|
||||||
|
inline = {
|
||||||
|
enabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
terminal = {
|
||||||
|
"dock" = "left";
|
||||||
|
"env" = {
|
||||||
|
# "EDITOR": "zeditor --wait"
|
||||||
|
"EDITOR" = "vim";
|
||||||
|
};
|
||||||
|
"font_size" = 12;
|
||||||
|
"font_family" = "Maple Mono NF";
|
||||||
|
"line_height" = "standard";
|
||||||
|
};
|
||||||
|
buffer_font_family = "Maple Mono NF";
|
||||||
|
|
||||||
"experimental.theme_overrides" = {
|
# "diagnostics_max_severity": "off",
|
||||||
"syntax" = {
|
|
||||||
"comment.doc" = {
|
"experimental.theme_overrides" = {
|
||||||
"color" = "#77B767";
|
"syntax" = {
|
||||||
|
"comment.doc" = {
|
||||||
|
"color" = "#77B767";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,8 @@
|
||||||
{ pkgs, inputs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
(inputs.self + /modules/users.nix)
|
(../modules/users.nix)
|
||||||
];
|
];
|
||||||
users.groups.media = { };
|
|
||||||
|
|
||||||
custom.users = {
|
custom.users = {
|
||||||
vivian = {
|
vivian = {
|
||||||
|
|
@ -19,6 +18,16 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mara = {
|
||||||
|
shell = pkgs.zsh;
|
||||||
|
keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKAzf3UCwTWJlF878EWqlrLUOBsxw/b/6PoLjbKkA8Xh"
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIHi5YnRt1VgK8tt6oSPsKo1X+0gcBXVyvCKXM03/vEh"
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFWF1MtDV5HJT+GhD8wrKICyDwQK8ZPQTxZdnsfaqWcs"
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIHi1EEGRry1aD6uPmdlcRqdiTiIty0JlnfoXeM0qKBC"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
jana = {
|
jana = {
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
keys = [
|
keys = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue