Compare commits
20 Commits
9aee1a2b37
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
d27f63a0f7
|
|||
|
90f6102481
|
|||
|
e44acd9b06
|
|||
|
177ce475a9
|
|||
|
1411f6c47e
|
|||
|
d1bee6c14d
|
|||
|
5514d347c7
|
|||
|
06519d555b
|
|||
|
ce94f09dd4
|
|||
|
171d635b72
|
|||
|
3bc4e3dd15
|
|||
|
4b7a64c8ac
|
|||
|
9024d2c744
|
|||
|
d13d81c60a
|
|||
|
88cf103332
|
|||
|
9431a71539
|
|||
|
6fa865644a
|
|||
|
154d0e4ddb
|
|||
|
cae0357dbe
|
|||
|
477a0b7372
|
6
.envrc
6
.envrc
@@ -1,11 +1,7 @@
|
|||||||
# -*- mode: sh; -*-
|
# -*- mode: sh; -*-
|
||||||
if ! has nix_direnv_version || ! nix_direnv_version 2.2.1; then
|
|
||||||
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.2.1/direnvrc" "sha256-zelF0vLbEl5uaqrfIzbgNzJWGmLzCmYAkInj/LNxvKs="
|
|
||||||
fi
|
|
||||||
|
|
||||||
watch_file flake.nix
|
watch_file flake.nix
|
||||||
watch_file flake.lock
|
watch_file flake.lock
|
||||||
if ! use flake . --no-pure-eval
|
if ! use flake . --no-pure-eval
|
||||||
then
|
then
|
||||||
echo "devenv could not be built. The devenv environment was not loaded. Make the necessary changes to devenv.nix and hit enter to try again." >&2
|
echo "dev shell could not be built. The environment was not loaded. Make the necessary changes to flake.nix and hit enter to try again." >&2
|
||||||
fi
|
fi
|
||||||
|
|||||||
907
flake.lock
generated
907
flake.lock
generated
File diff suppressed because it is too large
Load Diff
226
flake.nix
226
flake.nix
@@ -3,11 +3,7 @@
|
|||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||||
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
devenv = {
|
|
||||||
url = "github:cachix/devenv";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
@@ -30,7 +26,12 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
jj-cz = {
|
jj-cz = {
|
||||||
url = "git+https://labs.phundrak.com/phundrak/jj-cz";
|
url = "git+https://labs.phundrak.com/phundrak/jj-cz?ref=develop";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
|
opencode = {
|
||||||
|
url = "github:anomalyco/opencode/v1.3.15";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -62,14 +63,15 @@
|
|||||||
|
|
||||||
nixConfig = {
|
nixConfig = {
|
||||||
extra-trusted-public-keys = [
|
extra-trusted-public-keys = [
|
||||||
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
|
"marpa-local:XoO+dFN4PeauF52pYuy3Vh4Sdtl2qIdxu5aUasWKv6Q="
|
||||||
"phundrak.cachix.org-1:osJAkYO0ioTOPqaQCIXMfIRz1/+YYlVFkup3R2KSexk="
|
"phundrak.cachix.org-1:osJAkYO0ioTOPqaQCIXMfIRz1/+YYlVFkup3R2KSexk="
|
||||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||||
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
||||||
];
|
];
|
||||||
extra-substituters = [
|
extra-substituters = [
|
||||||
"https://nix-community.cachix.org?priority=10"
|
"http://marpa:5000?priority=5"
|
||||||
"https://devenv.cachix.org?priority=20"
|
"https://phundrak.cachix.org?priority=10"
|
||||||
"https://phundrak.cachix.org?priority=30"
|
"https://nix-community.cachix.org?priority=20"
|
||||||
"https://cache.nixos.org?priority=40"
|
"https://cache.nixos.org?priority=40"
|
||||||
];
|
];
|
||||||
extra-experimental-features = [
|
extra-experimental-features = [
|
||||||
@@ -82,119 +84,105 @@
|
|||||||
outputs = {
|
outputs = {
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
|
flake-utils,
|
||||||
home-manager,
|
home-manager,
|
||||||
devenv,
|
|
||||||
srvos,
|
srvos,
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs:
|
||||||
inherit (self) outputs;
|
flake-utils.lib.eachDefaultSystem (
|
||||||
system = "x86_64-linux";
|
system: let
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
inherit (self) outputs;
|
||||||
in {
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
formatter.${system} = pkgs.alejandra;
|
in {
|
||||||
|
formatter = pkgs.alejandra;
|
||||||
|
devShells.default = pkgs.mkShell {
|
||||||
|
buildInputs = [
|
||||||
|
pkgs.nh
|
||||||
|
pkgs.jujutsu
|
||||||
|
pkgs.git
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
packages.${system} = {
|
packages = {
|
||||||
devenv-up = self.devShells.${system}.default.config.procfileScript;
|
homeConfigurations = let
|
||||||
devenv-test = self.devShells.${system}.default.config.test;
|
extraSpecialArgs = {inherit inputs outputs system;};
|
||||||
};
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
|
defaultUserModules = [
|
||||||
devShells.${system}.default = devenv.lib.mkShell {
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
inherit inputs pkgs;
|
inputs.spicetify.homeManagerModules.default
|
||||||
modules = [
|
inputs.caelestia-shell.homeManagerModules.default
|
||||||
(
|
];
|
||||||
{pkgs, ...}: {
|
withUserModules = modules: nixpkgs.lib.lists.flatten (defaultUserModules ++ [modules]);
|
||||||
packages = [pkgs.nh];
|
in {
|
||||||
git-hooks.hooks = {
|
"phundrak@alys" = home-manager.lib.homeManagerConfiguration {
|
||||||
alejandra.enable = true;
|
inherit extraSpecialArgs pkgs;
|
||||||
commitizen.enable = true;
|
modules = withUserModules ./users/phundrak/host/alys.nix;
|
||||||
detect-private-keys.enable = true;
|
|
||||||
end-of-file-fixer.enable = true;
|
|
||||||
deadnix.enable = true;
|
|
||||||
ripsecrets.enable = true;
|
|
||||||
statix.enable = true;
|
|
||||||
};
|
};
|
||||||
}
|
"creug@elcafe" = home-manager.lib.homeManagerConfiguration {
|
||||||
)
|
inherit extraSpecialArgs pkgs;
|
||||||
];
|
modules = withUserModules ./users/creug/host/elcafe.nix;
|
||||||
};
|
};
|
||||||
|
"phundrak@elcafe" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit extraSpecialArgs pkgs;
|
||||||
|
modules = withUserModules ./users/phundrak/host/elcafe.nix;
|
||||||
|
};
|
||||||
|
"phundrak@gampo" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit extraSpecialArgs pkgs;
|
||||||
|
modules = withUserModules ./users/phundrak/host/gampo.nix;
|
||||||
|
};
|
||||||
|
"phundrak@marpa" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit extraSpecialArgs pkgs;
|
||||||
|
modules = withUserModules ./users/phundrak/host/marpa.nix;
|
||||||
|
};
|
||||||
|
"phundrak@NaroMk3" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit extraSpecialArgs pkgs;
|
||||||
|
modules = withUserModules ./users/phundrak/host/naromk3.nix;
|
||||||
|
};
|
||||||
|
"phundrak@tilo" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit extraSpecialArgs pkgs;
|
||||||
|
modules = withUserModules ./users/phundrak/host/tilo.nix;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
homeConfigurations = let
|
nixosConfigurations = let
|
||||||
extraSpecialArgs = {inherit inputs outputs system;};
|
specialArgs = {inherit inputs outputs;};
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
defaultSystemModules = [
|
||||||
defaultUserModules = [
|
inputs.sops-nix.nixosModules.sops
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.copyparty.nixosModules.default
|
||||||
inputs.spicetify.homeManagerModules.default
|
];
|
||||||
inputs.caelestia-shell.homeManagerModules.default
|
withSystemModules = modules: nixpkgs.lib.lists.flatten (defaultSystemModules ++ [modules]);
|
||||||
];
|
in {
|
||||||
withUserModules = modules: nixpkgs.lib.lists.flatten (defaultUserModules ++ [modules]);
|
alys = nixpkgs.lib.nixosSystem {
|
||||||
in {
|
inherit specialArgs;
|
||||||
"phundrak@alys" = home-manager.lib.homeManagerConfiguration {
|
modules = withSystemModules ./hosts/alys/configuration.nix;
|
||||||
inherit extraSpecialArgs pkgs;
|
};
|
||||||
modules = withUserModules ./users/phundrak/host/alys.nix;
|
elcafe = nixpkgs.lib.nixosSystem {
|
||||||
};
|
inherit specialArgs;
|
||||||
"creug@elcafe" = home-manager.lib.homeManagerConfiguration {
|
modules = withSystemModules ./hosts/elcafe/configuration.nix;
|
||||||
inherit extraSpecialArgs pkgs;
|
};
|
||||||
modules = withUserModules ./users/creug/host/elcafe.nix;
|
gampo = nixpkgs.lib.nixosSystem {
|
||||||
};
|
inherit specialArgs;
|
||||||
"phundrak@elcafe" = home-manager.lib.homeManagerConfiguration {
|
modules = withSystemModules ./hosts/gampo/configuration.nix;
|
||||||
inherit extraSpecialArgs pkgs;
|
};
|
||||||
modules = withUserModules ./users/phundrak/host/elcafe.nix;
|
marpa = nixpkgs.lib.nixosSystem {
|
||||||
};
|
inherit specialArgs;
|
||||||
"phundrak@gampo" = home-manager.lib.homeManagerConfiguration {
|
modules = withSystemModules ./hosts/marpa;
|
||||||
inherit extraSpecialArgs pkgs;
|
};
|
||||||
modules = withUserModules ./users/phundrak/host/marpa.nix;
|
NaroMk3 = nixpkgs.lib.nixosSystem {
|
||||||
};
|
inherit specialArgs;
|
||||||
"phundrak@marpa" = home-manager.lib.homeManagerConfiguration {
|
modules = withSystemModules [
|
||||||
inherit extraSpecialArgs pkgs;
|
srvos.nixosModules.server
|
||||||
modules = withUserModules ./users/phundrak/host/marpa.nix;
|
srvos.nixosModules.hardware-hetzner-cloud
|
||||||
};
|
srvos.nixosModules.mixins-terminfo
|
||||||
"phundrak@NaroMk3" = home-manager.lib.homeManagerConfiguration {
|
./hosts/naromk3/configuration.nix
|
||||||
inherit extraSpecialArgs pkgs;
|
];
|
||||||
modules = withUserModules ./users/phundrak/host/naromk3.nix;
|
};
|
||||||
};
|
tilo = nixpkgs.lib.nixosSystem {
|
||||||
"phundrak@tilo" = home-manager.lib.homeManagerConfiguration {
|
inherit specialArgs;
|
||||||
inherit extraSpecialArgs pkgs;
|
modules = withSystemModules ./hosts/tilo/configuration.nix;
|
||||||
modules = withUserModules ./users/phundrak/host/tilo.nix;
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
}
|
||||||
nixosConfigurations = let
|
);
|
||||||
specialArgs = {inherit inputs outputs;};
|
|
||||||
defaultSystemModules = [
|
|
||||||
inputs.sops-nix.nixosModules.sops
|
|
||||||
inputs.copyparty.nixosModules.default
|
|
||||||
];
|
|
||||||
withSystemModules = modules: nixpkgs.lib.lists.flatten (defaultSystemModules ++ [modules]);
|
|
||||||
in {
|
|
||||||
alys = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit specialArgs;
|
|
||||||
modules = withSystemModules ./hosts/alys/configuration.nix;
|
|
||||||
};
|
|
||||||
elcafe = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit specialArgs;
|
|
||||||
modules = withSystemModules ./hosts/elcafe/configuration.nix;
|
|
||||||
};
|
|
||||||
gampo = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit specialArgs;
|
|
||||||
modules = withSystemModules ./hosts/gampo/configuration.nix;
|
|
||||||
};
|
|
||||||
marpa = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit specialArgs;
|
|
||||||
modules = withSystemModules ./hosts/marpa/configuration.nix;
|
|
||||||
};
|
|
||||||
NaroMk3 = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit specialArgs;
|
|
||||||
modules = withSystemModules [
|
|
||||||
srvos.nixosModules.server
|
|
||||||
srvos.nixosModules.hardware-hetzner-cloud
|
|
||||||
srvos.nixosModules.mixins-terminfo
|
|
||||||
./hosts/naromk3/configuration.nix
|
|
||||||
];
|
|
||||||
};
|
|
||||||
tilo = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit specialArgs;
|
|
||||||
modules = withSystemModules ./hosts/tilo/configuration.nix;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,14 +12,14 @@
|
|||||||
sops.secrets = {
|
sops.secrets = {
|
||||||
"elcafe/traefik/env".restartUnits = ["traefik.service"];
|
"elcafe/traefik/env".restartUnits = ["traefik.service"];
|
||||||
"elcafe/traefik/dynamic".restartUnits = ["traefik.service"];
|
"elcafe/traefik/dynamic".restartUnits = ["traefik.service"];
|
||||||
"elcafe/copyparty/passwords/creug" = {
|
# "elcafe/copyparty/passwords/creug" = {
|
||||||
restartUnits = ["copyparty.service"];
|
# restartUnits = ["copyparty.service"];
|
||||||
owner = "creug";
|
# owner = "creug";
|
||||||
};
|
# };
|
||||||
"elcafe/copyparty/passwords/phundrak" = {
|
# "elcafe/copyparty/passwords/phundrak" = {
|
||||||
restartUnits = ["copyparty.service"];
|
# restartUnits = ["copyparty.service"];
|
||||||
owner = "phundrak";
|
# owner = "phundrak";
|
||||||
};
|
# };
|
||||||
};
|
};
|
||||||
|
|
||||||
mySystem = {
|
mySystem = {
|
||||||
@@ -73,12 +73,12 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.copyparty = import ./copyparty.nix {
|
# services.copyparty = import ./copyparty.nix {
|
||||||
passwordFiles = {
|
# passwordFiles = {
|
||||||
creug = config.sops.secrets."elcafe/copyparty/passwords/creug".path;
|
# creug = config.sops.secrets."elcafe/copyparty/passwords/creug".path;
|
||||||
phundrak = config.sops.secrets."elcafe/copyparty/passwords/phundrak".path;
|
# phundrak = config.sops.secrets."elcafe/copyparty/passwords/phundrak".path;
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like file locations and database versions
|
# settings for stateful data, like file locations and database versions
|
||||||
|
|||||||
@@ -41,6 +41,7 @@
|
|||||||
};
|
};
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
};
|
};
|
||||||
|
i18n.input.enable = true;
|
||||||
misc.keymap = "fr-bepo";
|
misc.keymap = "fr-bepo";
|
||||||
networking = {
|
networking = {
|
||||||
hostname = "gampo";
|
hostname = "gampo";
|
||||||
|
|||||||
@@ -86,6 +86,7 @@
|
|||||||
scarlett.enable = true;
|
scarlett.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
i18n.input.enable = true;
|
||||||
misc.keymap = "fr-bepo";
|
misc.keymap = "fr-bepo";
|
||||||
networking = {
|
networking = {
|
||||||
hostname = "marpa";
|
hostname = "marpa";
|
||||||
@@ -106,6 +107,10 @@
|
|||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
services = {
|
services = {
|
||||||
fwupd.enable = true;
|
fwupd.enable = true;
|
||||||
|
harmonia = {
|
||||||
|
enable = true;
|
||||||
|
signKeyPaths = [config.sops.secrets."marpa/nix-cache-priv-key".path];
|
||||||
|
};
|
||||||
languagetool.enable = true;
|
languagetool.enable = true;
|
||||||
printing.enable = true;
|
printing.enable = true;
|
||||||
ssh.enable = true;
|
ssh.enable = true;
|
||||||
@@ -123,10 +128,13 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
sops.secrets.extraHosts = {
|
sops.secrets = {
|
||||||
inherit (config.users.users.root) group;
|
"marpa/nix-cache-priv-key" = {};
|
||||||
owner = config.users.users.phundrak.name;
|
extraHosts = {
|
||||||
mode = "0440";
|
inherit (config.users.users.root) group;
|
||||||
|
owner = config.users.users.phundrak.name;
|
||||||
|
mode = "0440";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.udev.extraHwdb = ''
|
services.udev.extraHwdb = ''
|
||||||
@@ -6,6 +6,8 @@ elcafe:
|
|||||||
traefik:
|
traefik:
|
||||||
env: ENC[AES256_GCM,data:HUdWGYoEPp2v8dnDuVsl7YmPxuBfHmXzGrvKWeiqPlmAwMqVZrZ1j8on/7QKvYDJoTJ40XY2qNynSA==,iv:Vgc/fZERnNp7hSMeRd9EgB3IenKAFTAhwC0bk8CX4DE=,tag:SdfhOST/o29Lt1zRdXXRyQ==,type:str]
|
env: ENC[AES256_GCM,data:HUdWGYoEPp2v8dnDuVsl7YmPxuBfHmXzGrvKWeiqPlmAwMqVZrZ1j8on/7QKvYDJoTJ40XY2qNynSA==,iv:Vgc/fZERnNp7hSMeRd9EgB3IenKAFTAhwC0bk8CX4DE=,tag:SdfhOST/o29Lt1zRdXXRyQ==,type:str]
|
||||||
dynamic: ENC[AES256_GCM,data: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,iv:3G3geSZRziwGiKcUMVNZ7j5s/4YA6Uk7wCSb4aFNSMo=,tag:FxARskR9+wdV7/xCKP8UdA==,type:str]
|
dynamic: ENC[AES256_GCM,data:BKsjTfqpZhrocHOUfxjCNS61DVb1oSdPW99IrwmNjpFcs68WvyfD0+QZ9F362L88CQDTnDSXWAbc7mcBtxhqfhkjtsdxkhtLHMGG0WxlnYungTnROh9EDJRLNyjy/RCYWOIVOXIEUE5lLwnQkboZLEiruw1Ri+r27WYmGpD5DaR4XWDankb6BQPJA6f2ziPyynjNYZaRhMIQUDFLM3QRAXPYD00eaYIQtx253z8Uocz4LpOw2JReAQkI2zc+6Oe1O4fP/Cg8klF0owR6NkNUWoIUVwLqFmU7Yr45VO+T/f96Ev0hlDaMklxYJGNOS8kRbSqpaiuMCmL2mQ6rsZGFVfdMdImSL2j51lrPFJCsg/hNGXHAxQ0/OpHtcZz/cwn5nSHBXg6gX21kOpkWGY1+BRA15X0k5sUqXkZWjkP9wkSCV6pQTbr8a3GrX2VvGwguAC4EpTCkCobXw/d9a7bMfZFeJqFhwjpU/dfBi6OjF7bniOQ7k3+5RZRDqAxJiPaBk7NKVN1FzUCvFBjKifbfICOJaPJr1CmayNuBZtsSlj0MXBYx8D8oShzhsCo/+pyni4poMYyfNC9jQKWCBsjKEa6eWb1+TfOHv4W+lSlBFg3vGm4NDxCPnACKWlhKB4WoJGRHqnp809XF2fqP4lZN8S7+sB2rhNlr2CICk9oM80FNmW/8TTtIgbpfEeFeJwNTM+S95cFSqaIRg3kfcqB/bHG37BYthcL1SC85/lxhL2LJ/O0qXxbioyxVAaBIumAO8BB1qrdbOozHZZAU1IIKylDWMWUoJMyMdhMGnOxxxWcbV2jPUXUv03DYNp3G/5F2Hlr+h0bPIJEFZ2kb14wTK+25MsgfBgky26f8qjNwROqKA+bPeB2yUKSSCJb//PzzE4xyqu1mq2/1zTal0eSRTCEnAUCj0wDqCLBMO6GnL0PS4PtGJ9n/IbOjFXZeixWGJzUTcmxPAmsClH6FV8brEMVs5bfrjLieXQvcn0b8b9/1W2jV4dJGUE1TxUQ2B92VG7PrA39O/FO8tQJZrAMXO9iMv495w0Nxbt0HYN6wsFTUwlQ+3DCXxgmmVBqVSf1OtHuhxcznl1oR+sgPSgBRLVB22mv5677ErQGCWp1luyPSF6xvhIaKe9BDwxBwJ+RsqSn4w5t1qJM9uYqFunSJPY5439B4zWG+lUy1ZDNn1oHUaX3hZUhzc9tEm+0CWFNXxH2hiRFb2nYP6Pv/GNqjZCsflY0YYty0UJBqRELGpUO3Sd+zbyJmWtvDjto726/0jHB/jb0RVThUem0PzWmmIUth0ucKp0M7zqEWNyVPbvWOK6rWQW9eaW87bFeMhrD1PC+U0ilq9DKG1J3ldc0lEBrguc4fk72T3I62pw5KdGnsmB+FjAc8kdTFKhM52ylChsAnJGFu0LyBUgjGIzZ03XkO8RbYs/wzc9VQOvyikvB67wImXMu8PJDzMxXnu58y7C4U86kvLdUfYm5bz+MxZmXsDA1L7C4si6oLf7rOCfLLc4A1a/X/aMSk330SARW/UAZ/NaFDXhotYXZUSbr41Z6b0qRPZjjZfOkdeKxTp+r07+8oJpPOaIaaOIlNRkGyRCnbCGvJ4CuUfTQuywIefBHlawGzhsDvOKorWYTuim7MbJcd19bYMG6k8qqTQlNeHjZJaDLKJ/rnSAIGDSNYRP4uUUo0gqSp82E9bXUUn5VuFSPcJ55uvFXZD0f6tLZGIyUuG5tqw3xNQF2cA+4ZXzbxi6VIZQ+ahZELkoBR+dVXQ0yGkDJusNf61A1lfI2bd7JQnJ7YVhbF1gXNnDXdWO0F8zsnZyhSSJY3ZoXLdYn+v39+AxQvE3mpX7zNsk7+0WUHuqAh6JG6OBt7jF5OVwD3bfuQfDhPlfD7YOU5/C+rekDGXmfZOMXxadvQgWFcpHdgbV7NwKqdgj6pJDVoGO8/4HGtlb94/o6dtXzfheSLUhCUZ2Im81yduu8386fCYLHX/ZsP+CuuC2wlXQaSCgoODRXXDz7jsRcQNfW2ohmFT9iDn95NI5ylCgt49t2Cr06ft7Pd0tWjh69VQ8TjNlfqm3Sxlf/Gb9ihwOOytmbDv4bNKhpRIPC0jIZv3aaA7vgdLCbySVeMo1tfMx3Xvf6q8XqlsQ/HgwBxAMmjakIAukNwtU74oJ2AYpIO/Oc47081JR2sVtGWer6l7C8KMy9O0xYtABsofkc9kHQWtAvn82sSQTuI/UgD5ttfdfVZZaanHek3vgJyTYI3sPQDVJ6SXrC0a+fqMlTL7Jux/0B70gK1z46j5C54IBCChNa4CwXhvxofyoDgyF6DVC2qZxoKXGl1veQKJh68q9hCiDlYEpiwuRCs3j6uSUG4Rssc9TKfdY3AQltVrhykEORVEgZe1HWmlms=,iv:3G3geSZRziwGiKcUMVNZ7j5s/4YA6Uk7wCSb4aFNSMo=,tag:FxARskR9+wdV7/xCKP8UdA==,type:str]
|
||||||
|
marpa:
|
||||||
|
nix-cache-priv-key: ENC[AES256_GCM,data:H5VsN0nOogvgxWHXHF66BbzJe17zelZCG6mU4vmVJqBoi7a5cQxzU7WnV4k1EOpMJPDj6floVmrsG4DM86FthxcTwixCNDINmaemwAXQnUkgWXFKYY7Ovzten81UVKrtkN4n1S8=,iv:pxnHD5YqyTeNZnxyEJeXAUixZEz8Uq9b2HFZZBsMOzk=,tag:xI+4tFG+Q4Z5IVxlATayJA==,type:str]
|
||||||
extraHosts: ENC[AES256_GCM,data:4lp7w0snYle7vGVLJq3zlTxoC8eVpaSreW3P8Aq+O6oRJoWo3IASpwi7zSx6nxmLo5LGPeupVXfy3xOkG9d5QFNU2uU6vXKvOnnm6wrpS+UcYp/4U/z+R3rFnFsI5PsCgmlL1bSUFCFkXlrLDIyoW50Q/DLXDS8QaUYAtto1DcRUXc9j8RnunYF38HFlAOD/Xa4DY048pvZu8TMsmLQjM5txZnZBq4+P8aBjY3SF+K9cqZ+SgQkU+gdGo0/S/N5OUZJ3ATJ6mglPl/Nplw/Dh9HvC7jEMJZKrVzWiYquTOn0/IytqOCS2SkhsmVMRqf06hpvhlz6sFXzkDfxKMIRTULEkjZDkZ7QioSbLeqmQePSg7xs28SvToiVKSpg0PxeH5LvJE73hgX3ATUXA2BmRvqQuqBwLaDU6TPm8xkYe7qbabaN5oFtXCI/XydZTao5Glqw/BZQRTise/qGgn3Bfl/ieMYQOqCMEdHzR0Beipur6spliGFC4YnwL3Nh4CO6qOB/j61a7rqY6nLyo54jWtjvHX42pTuGWhvhGH1z4NRZqcKks+KCMB4PcCXgul1hrb04wLXYVu7R/7QqOACp4SZBUFZCj+izcsnB1sKdKliL87VBUkwOSF+1JUCY,iv:5A3jCWLkooCkuOMiybbeQ9+TRA7CoiW3qbzmJLVarSc=,tag:qLsGhrFHs65Vesj4Ot4I/g==,type:str]
|
extraHosts: ENC[AES256_GCM,data:4lp7w0snYle7vGVLJq3zlTxoC8eVpaSreW3P8Aq+O6oRJoWo3IASpwi7zSx6nxmLo5LGPeupVXfy3xOkG9d5QFNU2uU6vXKvOnnm6wrpS+UcYp/4U/z+R3rFnFsI5PsCgmlL1bSUFCFkXlrLDIyoW50Q/DLXDS8QaUYAtto1DcRUXc9j8RnunYF38HFlAOD/Xa4DY048pvZu8TMsmLQjM5txZnZBq4+P8aBjY3SF+K9cqZ+SgQkU+gdGo0/S/N5OUZJ3ATJ6mglPl/Nplw/Dh9HvC7jEMJZKrVzWiYquTOn0/IytqOCS2SkhsmVMRqf06hpvhlz6sFXzkDfxKMIRTULEkjZDkZ7QioSbLeqmQePSg7xs28SvToiVKSpg0PxeH5LvJE73hgX3ATUXA2BmRvqQuqBwLaDU6TPm8xkYe7qbabaN5oFtXCI/XydZTao5Glqw/BZQRTise/qGgn3Bfl/ieMYQOqCMEdHzR0Beipur6spliGFC4YnwL3Nh4CO6qOB/j61a7rqY6nLyo54jWtjvHX42pTuGWhvhGH1z4NRZqcKks+KCMB4PcCXgul1hrb04wLXYVu7R/7QqOACp4SZBUFZCj+izcsnB1sKdKliL87VBUkwOSF+1JUCY,iv:5A3jCWLkooCkuOMiybbeQ9+TRA7CoiW3qbzmJLVarSc=,tag:qLsGhrFHs65Vesj4Ot4I/g==,type:str]
|
||||||
mopidy:
|
mopidy:
|
||||||
spotify: ENC[AES256_GCM,data:6i9BzQmlndnROuT1H2zgN/3I6hBiFf14BlcS+XL2PbTiiEQZe2yE3tnZo3KXU9S5CjS3MwxsVdytKOFMQt2s1bVjcibBhJzoKEQByaapdzn1mK3kQLdJfhPf4Hf9YZV9Dlc60ngS7ESLZakdFVlj4rlbV5XReLhK,iv:fYd78r4U0kTyq1TZjBVXkjdNiOQ29gLJ53kwTXsi8W0=,tag:oWaeOuzdHWS4joZAdeA2pg==,type:str]
|
spotify: ENC[AES256_GCM,data:6i9BzQmlndnROuT1H2zgN/3I6hBiFf14BlcS+XL2PbTiiEQZe2yE3tnZo3KXU9S5CjS3MwxsVdytKOFMQt2s1bVjcibBhJzoKEQByaapdzn1mK3kQLdJfhPf4Hf9YZV9Dlc60ngS7ESLZakdFVlj4rlbV5XReLhK,iv:fYd78r4U0kTyq1TZjBVXkjdNiOQ29gLJ53kwTXsi8W0=,tag:oWaeOuzdHWS4joZAdeA2pg==,type:str]
|
||||||
@@ -105,7 +107,7 @@ sops:
|
|||||||
dUpXZis2N2VyN0ZFbjlPRXdwRFQ1aHMKm1Mk6MPKxFmwdATCYUANRSY5rHKgmQer
|
dUpXZis2N2VyN0ZFbjlPRXdwRFQ1aHMKm1Mk6MPKxFmwdATCYUANRSY5rHKgmQer
|
||||||
LBlqqWKt1JiIUAYtazQeQ6KYxmjVlQPY7AZw2t+EhBEPrqbTL3vOiw==
|
LBlqqWKt1JiIUAYtazQeQ6KYxmjVlQPY7AZw2t+EhBEPrqbTL3vOiw==
|
||||||
-----END AGE ENCRYPTED FILE-----
|
-----END AGE ENCRYPTED FILE-----
|
||||||
lastmodified: "2026-03-07T17:19:05Z"
|
lastmodified: "2026-05-01T13:20:34Z"
|
||||||
mac: ENC[AES256_GCM,data:hT4mPKLcIuAFmllJBYFXL5sGyMn95mYEv+eGVA+KQYm629YKSncgvn5g8elau/8HXR1O/bwQlkGmGr8VPeR/0KRb6TPCA4MrCwox38fy3ZLx2e0movVi/xIgKXIo5wYUq4Qm/pSo715limxGChxUxKtdEK/lmMkSnxyGmlkQtwM=,iv:XoOfhdK/CK6shUXhH4h14gtyqZqcqmTV6/R2jkynFr8=,tag:q3V0xcWQxjFi2drk5fLJoQ==,type:str]
|
mac: ENC[AES256_GCM,data:OueL0eHYmFKWfSyCZxburRJ2FS1xkowx7ha/Zv7r++26D85GSHDeIL9HdfByI5a1OhH90rH3WLxZrJgT3FiwBw27HhhHtS7Fs6MBFvTuPmSA7ZtMeGMWBRVjwbGAWN17BZAhJzMlZHq2nPX0xXIKT0HuTLVRPLuVCSlvDzMXsTE=,iv:+JN4Vzs8o8PJAam/uKBbUXt3ArxC88D6xR7rMeeGglg=,tag:S+OtbxLhVKFnqBZtyKDGyA==,type:str]
|
||||||
unencrypted_suffix: _unencrypted
|
unencrypted_suffix: _unencrypted
|
||||||
version: 3.11.0
|
version: 3.12.2
|
||||||
|
|||||||
@@ -73,10 +73,7 @@ in {
|
|||||||
};
|
};
|
||||||
supportedFilesystems = mkIf cfg.zfs.enable ["zfs"];
|
supportedFilesystems = mkIf cfg.zfs.enable ["zfs"];
|
||||||
zfs.extraPools = mkIf cfg.zfs.enable cfg.zfs.pools;
|
zfs.extraPools = mkIf cfg.zfs.enable cfg.zfs.pools;
|
||||||
kernelPackages =
|
kernelPackages = cfg.kernel.package;
|
||||||
if cfg.kernel.hardened
|
|
||||||
then pkgs.linuxPackages_hardened
|
|
||||||
else cfg.kernel.package;
|
|
||||||
kernelModules =
|
kernelModules =
|
||||||
cfg.kernel.modules
|
cfg.kernel.modules
|
||||||
++ ["kvm-${cfg.kernel.cpuVendor}"]
|
++ ["kvm-${cfg.kernel.cpuVendor}"]
|
||||||
|
|||||||
@@ -47,16 +47,16 @@ in {
|
|||||||
|
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
substituters = [
|
substituters = [
|
||||||
"https://nix-community.cachix.org?priority=10"
|
"http://marpa:5000?priority=5"
|
||||||
"https://devenv.cachix.org?priority=20"
|
"https://phundrak.cachix.org?priority=10"
|
||||||
"https://phundrak.cachix.org?priority=30"
|
"https://nix-community.cachix.org?priority=20"
|
||||||
"https://cache.nixos.org?priority=40"
|
"https://cache.nixos.org?priority=40"
|
||||||
];
|
];
|
||||||
trusted-public-keys = [
|
trusted-public-keys = [
|
||||||
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
"marpa-local:XoO+dFN4PeauF52pYuy3Vh4Sdtl2qIdxu5aUasWKv6Q="
|
||||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
||||||
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
|
|
||||||
"phundrak.cachix.org-1:osJAkYO0ioTOPqaQCIXMfIRz1/+YYlVFkup3R2KSexk="
|
"phundrak.cachix.org-1:osJAkYO0ioTOPqaQCIXMfIRz1/+YYlVFkup3R2KSexk="
|
||||||
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||||
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
||||||
];
|
];
|
||||||
http-connections = 128;
|
http-connections = 128;
|
||||||
experimental-features = [
|
experimental-features = [
|
||||||
|
|||||||
@@ -9,7 +9,10 @@ with lib; let
|
|||||||
in {
|
in {
|
||||||
options.mySystem.desktop.waydroid.enable = mkEnableOption "Enables Waydroid";
|
options.mySystem.desktop.waydroid.enable = mkEnableOption "Enables Waydroid";
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
virtualisation.waydroid.enable = cfg.enable;
|
virtualisation.waydroid = {
|
||||||
|
enable = cfg.enable;
|
||||||
|
package = pkgs.waydroid-nftables;
|
||||||
|
};
|
||||||
environment.systemPackages = [pkgs.waydroid-helper];
|
environment.systemPackages = [pkgs.waydroid-helper];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./input.nix
|
||||||
./locale.nix
|
./locale.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
25
system/i18n/input.nix
Normal file
25
system/i18n/input.nix
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.mySystem.i18n.input;
|
||||||
|
in {
|
||||||
|
options.mySystem.i18n.input.enable = mkEnableOption "Enable i18n input with fcitx5";
|
||||||
|
|
||||||
|
config.i18n.inputMethod = mkIf cfg.enable {
|
||||||
|
enable = true;
|
||||||
|
type = "fcitx5";
|
||||||
|
fcitx5.addons = with pkgs; [
|
||||||
|
fcitx5-gtk
|
||||||
|
fcitx5-mozc-ut # Japanese input support
|
||||||
|
fcitx5-nord
|
||||||
|
fcitx5-table-other # X-SAMPA to IPA support
|
||||||
|
qt6Packages.fcitx5-chinese-addons # allow to load table addons
|
||||||
|
qt6Packages.fcitx5-configtool
|
||||||
|
qt6Packages.fcitx5-with-addons
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -3,6 +3,7 @@
|
|||||||
./calibre.nix
|
./calibre.nix
|
||||||
./endlessh.nix
|
./endlessh.nix
|
||||||
./fwupd.nix
|
./fwupd.nix
|
||||||
|
./harmonia.nix
|
||||||
./jellyfin.nix
|
./jellyfin.nix
|
||||||
./languagetool.nix
|
./languagetool.nix
|
||||||
./plex.nix
|
./plex.nix
|
||||||
|
|||||||
36
system/services/harmonia.nix
Normal file
36
system/services/harmonia.nix
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.mySystem.services.harmonia;
|
||||||
|
in {
|
||||||
|
options.mySystem.services.harmonia = {
|
||||||
|
enable = mkEnableOption "Harmonia Nix binary cache server";
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5000;
|
||||||
|
description = "Port to listen on";
|
||||||
|
};
|
||||||
|
priority = mkOption {
|
||||||
|
type = types.ints.between 0 100;
|
||||||
|
default = 50;
|
||||||
|
description = "Cache priority (lower = higher priority, 0-100)";
|
||||||
|
};
|
||||||
|
signKeyPaths = mkOption {
|
||||||
|
type = types.listOf types.path;
|
||||||
|
description = "Paths to the signing keys to use for signing the cache.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
services.harmonia.cache = {
|
||||||
|
enable = true;
|
||||||
|
inherit (cfg) signKeyPaths;
|
||||||
|
settings = {
|
||||||
|
inherit (cfg) priority;
|
||||||
|
bind = "[::]:${toString cfg.port}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -34,7 +34,16 @@ in {
|
|||||||
creug.sshKey.file = "${config.home.homeDirectory}/.ssh/id_ed25519.pub";
|
creug.sshKey.file = "${config.home.homeDirectory}/.ssh/id_ed25519.pub";
|
||||||
|
|
||||||
dev.vcs = {
|
dev.vcs = {
|
||||||
jj.enable = false;
|
name = "Creug";
|
||||||
|
email = "gregory.foulachon@gmail.com";
|
||||||
|
editor = "${pkgs.nano}/bin/nano";
|
||||||
|
jj = {
|
||||||
|
enable = true;
|
||||||
|
cz = {
|
||||||
|
enable = true;
|
||||||
|
alias = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
git.enable = true;
|
git.enable = true;
|
||||||
publicKey = cfg.sshKey;
|
publicKey = cfg.sshKey;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -27,9 +27,10 @@ in {
|
|||||||
explorer = ["${pkgs.nemo-with-extensions}/bin/nemo"];
|
explorer = ["${pkgs.nemo-with-extensions}/bin/nemo"];
|
||||||
};
|
};
|
||||||
idle = {
|
idle = {
|
||||||
|
inhibitWhenAudio = true;
|
||||||
timeouts = [
|
timeouts = [
|
||||||
{
|
{
|
||||||
timeout = 300;
|
timeout = 3600;
|
||||||
idleAction = "lock";
|
idleAction = "lock";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ in {
|
|||||||
./swaync.nix
|
./swaync.nix
|
||||||
./theme.nix
|
./theme.nix
|
||||||
./waybar.nix
|
./waybar.nix
|
||||||
|
./wl-kbptr.nix
|
||||||
./wlr-which-key.nix
|
./wlr-which-key.nix
|
||||||
./wlsunset.nix
|
./wlsunset.nix
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -50,10 +50,13 @@ in {
|
|||||||
systemd.enable = false;
|
systemd.enable = false;
|
||||||
importantPrefixes = ["$left" "$right" "$up" "$down" "$menu"];
|
importantPrefixes = ["$left" "$right" "$up" "$down" "$menu"];
|
||||||
settings = {
|
settings = {
|
||||||
|
env = [
|
||||||
|
"XMODIFIERS,@im=fcitx"
|
||||||
|
"XCURSOR_SIZE,12"
|
||||||
|
];
|
||||||
input = {
|
input = {
|
||||||
kb_layout = "fr,us";
|
kb_layout = "fr,us";
|
||||||
kb_variant = "bepo_afnor,";
|
kb_variant = "bepo_afnor,";
|
||||||
# kb_options = "caps:ctrl_modifier";
|
|
||||||
numlock_by_default = true;
|
numlock_by_default = true;
|
||||||
follow_mouse = 1;
|
follow_mouse = 1;
|
||||||
touchpad.natural_scroll = false;
|
touchpad.natural_scroll = false;
|
||||||
@@ -106,6 +109,8 @@ in {
|
|||||||
"pactl load-module module-switch-on-connect"
|
"pactl load-module module-switch-on-connect"
|
||||||
"${pkgs.mpc}/bin/mpc stop"
|
"${pkgs.mpc}/bin/mpc stop"
|
||||||
"${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"
|
"${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"
|
||||||
|
"${pkgs.mozc}/lib/mozc/mozc_server"
|
||||||
|
"${pkgs.fcitx5}/bin/fcitx5 -d"
|
||||||
]
|
]
|
||||||
++ lib.lists.optional (! caelestiaEnabled) "${pkgs.networkmanagerapplet}/bin/nm-applet";
|
++ lib.lists.optional (! caelestiaEnabled) "${pkgs.networkmanagerapplet}/bin/nm-applet";
|
||||||
};
|
};
|
||||||
@@ -170,8 +175,6 @@ in {
|
|||||||
bind = SUPER_SHIFT, minus, movetoworkspace, 8
|
bind = SUPER_SHIFT, minus, movetoworkspace, 8
|
||||||
bind = SUPER_SHIFT, slash, movetoworkspace, 9
|
bind = SUPER_SHIFT, slash, movetoworkspace, 9
|
||||||
bind = SUPER_SHIFT, asterisk, movetoworkspace, 10
|
bind = SUPER_SHIFT, asterisk, movetoworkspace, 10
|
||||||
|
|
||||||
env = XCURSOR_SIZE,12
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
37
users/modules/desktop/wl-kbptr.nix
Normal file
37
users/modules/desktop/wl-kbptr.nix
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
configDir = config.xdg.configHome;
|
||||||
|
cfg = config.home.desktop.wl-kbptr;
|
||||||
|
iniFormat = pkgs.formats.ini {};
|
||||||
|
in {
|
||||||
|
options.home.desktop.wl-kbptr = {
|
||||||
|
enable = mkEnableOption "enable wl-kbptr";
|
||||||
|
config = mkOption {
|
||||||
|
inherit (iniFormat) type;
|
||||||
|
default = {};
|
||||||
|
description = ''
|
||||||
|
Options to add to the {file}`config` file. See
|
||||||
|
<https://github.com/moverest/wl-kbptr/blob/main/config.example>
|
||||||
|
for options.
|
||||||
|
'';
|
||||||
|
example = {
|
||||||
|
general = {
|
||||||
|
home_row_keys = "abcd";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
home = {
|
||||||
|
packages = [pkgs.wl-kbptr];
|
||||||
|
file."${configDir}/wl-kbptr/config" = mkIf (cfg.config != {}) {
|
||||||
|
source = iniFormat.generate "wl-kbptr-config" cfg.config;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -2,6 +2,7 @@
|
|||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
inputs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib; let
|
with lib; let
|
||||||
@@ -29,7 +30,10 @@ in {
|
|||||||
};
|
};
|
||||||
ollama.enable = mkDefault cfg.enable;
|
ollama.enable = mkDefault cfg.enable;
|
||||||
};
|
};
|
||||||
packages = [pkgs.lmstudio];
|
packages = let
|
||||||
|
inherit (pkgs.stdenv.hostPlatform) system;
|
||||||
|
inherit (inputs.opencode.packages.${system}) opencode;
|
||||||
|
in [pkgs.lmstudio opencode];
|
||||||
};
|
};
|
||||||
programs.mcp = mkIf (cfg.mcpServers != {}) {
|
programs.mcp = mkIf (cfg.mcpServers != {}) {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
@@ -128,7 +128,10 @@ in {
|
|||||||
"dist/"
|
"dist/"
|
||||||
];
|
];
|
||||||
signing = {
|
signing = {
|
||||||
format = if cfg.publicKeyFile != null then "ssh" else "openpgp";
|
format =
|
||||||
|
if cfg.publicKeyFile != null
|
||||||
|
then "ssh"
|
||||||
|
else "openpgp";
|
||||||
key = cfg.publicKeyFile;
|
key = cfg.publicKeyFile;
|
||||||
signByDefault = true;
|
signByDefault = true;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,8 +6,42 @@
|
|||||||
}:
|
}:
|
||||||
with lib; let
|
with lib; let
|
||||||
cfg = config.home.shell.tmux;
|
cfg = config.home.shell.tmux;
|
||||||
|
keyType = types.submodule {
|
||||||
|
options = {
|
||||||
|
key = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
example = "C-b";
|
||||||
|
};
|
||||||
|
action = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
example = "resize-pane -Z";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
options.home.shell.tmux.enable = mkEnableOption "Enable tmux";
|
options.home.shell.tmux = with types; {
|
||||||
|
enable = mkEnableOption "Enable tmux";
|
||||||
|
bind = mkOption {
|
||||||
|
type = attrsOf (listOf keyType);
|
||||||
|
default = {};
|
||||||
|
example = {
|
||||||
|
"prefix" = [
|
||||||
|
{
|
||||||
|
key = "C-r";
|
||||||
|
action = "resize-pane -R";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
unbind = mkOption {
|
||||||
|
type = listOf (either str (attrsOf (listOf str)));
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
|
extraConfig = mkOption {
|
||||||
|
type = types.lines;
|
||||||
|
default = "";
|
||||||
|
};
|
||||||
|
};
|
||||||
config.programs.tmux = mkIf cfg.enable {
|
config.programs.tmux = mkIf cfg.enable {
|
||||||
inherit (cfg) enable;
|
inherit (cfg) enable;
|
||||||
baseIndex = 1;
|
baseIndex = 1;
|
||||||
@@ -25,71 +59,23 @@ in {
|
|||||||
sensible
|
sensible
|
||||||
yank
|
yank
|
||||||
];
|
];
|
||||||
extraConfig = ''
|
extraConfig = let
|
||||||
set-option -sa terminal-overrides ",xterm*:Tc"
|
generateBinds = concatLines (
|
||||||
|
mapAttrsToList (table: keys: concatMapStrings (key: "bind -T ${table} ${key.key} ${key.action}\n") keys) cfg.bind
|
||||||
|
);
|
||||||
|
generateUnbind =
|
||||||
|
concatMapStrings (
|
||||||
|
entry:
|
||||||
|
if builtins.isString entry
|
||||||
|
then "unbind ${entry}\n"
|
||||||
|
else concatStrings (mapAttrsToList (table: keys: concatMapStrings (key: "unbind -T ${table} ${key}\n") keys) entry)
|
||||||
|
)
|
||||||
|
cfg.unbind;
|
||||||
|
in ''
|
||||||
|
${cfg.extraConfig}
|
||||||
|
|
||||||
unbind C-b
|
${generateUnbind}
|
||||||
|
${generateBinds}
|
||||||
bind-key -T prefix « select-window -p
|
|
||||||
bind-key -T prefix » select-window -n
|
|
||||||
bind-key -T prefix Tab switch-client -T windows
|
|
||||||
bind-key -T prefix w switch-client -T pane
|
|
||||||
bind-key -T prefix y switch-client -T copy-mode
|
|
||||||
|
|
||||||
bind-key -T pane / split-window -h -c "#{pane-current_path}"
|
|
||||||
bind-key -T pane - split-window -v -c "#{pane-current_path}"
|
|
||||||
bind-key -T pane c select-pane -L
|
|
||||||
bind-key -T pane t select-pane -D
|
|
||||||
bind-key -T pane s select-pane -U
|
|
||||||
bind-key -T pane r select-pane -R
|
|
||||||
bind-key -T pane f resize-pane -Z
|
|
||||||
bind-key -T pane . switch-client -T pane-resize
|
|
||||||
|
|
||||||
bind-key -T pane-resize c resize-pane -L 5\; switch-client -T pane-resize
|
|
||||||
bind-key -T pane-resize t resize-pane -D 5\; switch-client -T pane-resize
|
|
||||||
bind-key -T pane-resize s resize-pane -U 5\; switch-client -T pane-resize
|
|
||||||
bind-key -T pane-resize r resize-pane -R 5\; switch-client -T pane-resize
|
|
||||||
bind-key -T pane-resize C resize-pane -L\; switch-client -T pane-resize
|
|
||||||
bind-key -T pane-resize T resize-pane -D\; switch-client -T pane-resize
|
|
||||||
bind-key -T pane-resize S resize-pane -U\; switch-client -T pane-resize
|
|
||||||
bind-key -T pane-resize R resize-pane -R\; switch-client -T pane-resize
|
|
||||||
|
|
||||||
bind-key -T windows c new-window
|
|
||||||
bind-key -T windows n next-window
|
|
||||||
bind-key -T windows p previous-window
|
|
||||||
|
|
||||||
bind-key -T windows \" select-window -t :=1
|
|
||||||
bind-key -T windows « select-window -t :=2
|
|
||||||
bind-key -T windows » select-window -t :=3
|
|
||||||
bind-key -T windows ( select-window -t :=4
|
|
||||||
bind-key -T windows ) select-window -t :=5
|
|
||||||
bind-key -T windows @ select-window -t :=6
|
|
||||||
bind-key -T windows + select-window -t :=7
|
|
||||||
bind-key -T windows - select-window -t :=8
|
|
||||||
bind-key -T windows / select-window -t :=9
|
|
||||||
bind-key -T windows * select-window -t :=10
|
|
||||||
|
|
||||||
unbind -T copy-mode-vi H
|
|
||||||
unbind -T copy-mode-vi J
|
|
||||||
unbind -T copy-mode-vi K
|
|
||||||
unbind -T copy-mode-vi L
|
|
||||||
unbind -T copy-mode-vi h
|
|
||||||
unbind -T copy-mode-vi j
|
|
||||||
unbind -T copy-mode-vi k
|
|
||||||
unbind -T copy-mode-vi l
|
|
||||||
|
|
||||||
bind-key -T copy-mode-vi v send-keys -X begin-selection
|
|
||||||
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
|
|
||||||
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
|
|
||||||
bind-key -T copy-mode-vi C send-keys -X top-line
|
|
||||||
bind-key -T copy-mode-vi J send-keys -X jump-to-backward
|
|
||||||
bind-key -T copy-mode-vi S send-keys -X scroll-up
|
|
||||||
bind-key -T copy-mode-vi R send-keys -X bottom-line
|
|
||||||
bind-key -T copy-mode-vi T send-keys -X scroll-down
|
|
||||||
bind-key -T copy-mode-vi c send-keys -X cursor-left
|
|
||||||
bind-key -T copy-mode-vi t send-keys -X cursor-down
|
|
||||||
bind-key -T copy-mode-vi s send-keys -X cursor-up
|
|
||||||
bind-key -T copy-mode-vi r send-keys -X cursor-right
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
1673
users/phundrak/XCompose
Normal file
1673
users/phundrak/XCompose
Normal file
File diff suppressed because it is too large
Load Diff
77
users/phundrak/firefox.nix
Normal file
77
users/phundrak/firefox.nix
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
{
|
||||||
|
config.home.desktop.firefox = {
|
||||||
|
enable = true;
|
||||||
|
useZen = true;
|
||||||
|
tridactyl = {
|
||||||
|
enable = true;
|
||||||
|
preConfig = "sanitise tridactyllocal tridactylsync";
|
||||||
|
config = {
|
||||||
|
editorcmd = "emacsclient -c";
|
||||||
|
keyboardlayoutbase = "bepo";
|
||||||
|
keyboardlayoutforce = "true";
|
||||||
|
hintchars = "auiectsr";
|
||||||
|
smothscroll = "true";
|
||||||
|
};
|
||||||
|
extraConfig = ''
|
||||||
|
unbind h
|
||||||
|
unbind j
|
||||||
|
unbind k
|
||||||
|
unbind l
|
||||||
|
unbind c
|
||||||
|
unbind t
|
||||||
|
unbind s
|
||||||
|
unbind r
|
||||||
|
unbind H
|
||||||
|
unbind J
|
||||||
|
unbind K
|
||||||
|
unbind L
|
||||||
|
unbind C
|
||||||
|
unbind T
|
||||||
|
unbind S
|
||||||
|
unbind R
|
||||||
|
|
||||||
|
" === Bépo layout — scrolling (ctsr = hjkl) ===
|
||||||
|
bind c scrollpx -300 0
|
||||||
|
bind t scrollline 5
|
||||||
|
bind s scrollline -5
|
||||||
|
bind r scrollpx 300 0
|
||||||
|
|
||||||
|
" Half/full page scroll (replacing C-f/C-b/C-d/C-u)
|
||||||
|
bind <C-t> scrollpage 0.5
|
||||||
|
bind <C-s> scrollpage -0.5
|
||||||
|
|
||||||
|
" === History navigation (C/R = H/L) ===
|
||||||
|
bind C back
|
||||||
|
bind R forward
|
||||||
|
|
||||||
|
" === Tab navigation ===
|
||||||
|
bind T tabnext
|
||||||
|
bind S tabprev
|
||||||
|
|
||||||
|
" === Displaced commands ===
|
||||||
|
" reload was on r → move to h (bépo's 'replace' position)
|
||||||
|
bind h reload
|
||||||
|
bind H reloadhard
|
||||||
|
|
||||||
|
" tabopen was on t → move to j (bépo's 'find char to' position)
|
||||||
|
bind j fillcmdline tabopen
|
||||||
|
|
||||||
|
unbind ^http(s?)://youtube\.com f
|
||||||
|
unbind ^http(s?)://youtube\.com t
|
||||||
|
unbind ^http(s?)://youtube\.com l
|
||||||
|
unbind ^http(s?)://youtube\.com j
|
||||||
|
unbind ^http(s?)://twitch\.tv f
|
||||||
|
|
||||||
|
bind n findnext
|
||||||
|
bind N findnext -f
|
||||||
|
bind p findnext --reverse
|
||||||
|
bind P findnext -f --reverse
|
||||||
|
|
||||||
|
bind < urlincrement -1
|
||||||
|
bind > urlincrement 1
|
||||||
|
bind ypv js tri.native.run(`mpv --ytdl-format="[height >=? 480]" --ontop --fs "''${document.location.href}"`)
|
||||||
|
bind ypm hint -JF e => tri.native.run(`mpv --ytdl-format="[height >=? 480]" --ontop --fs "''${e.href}"`)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -8,6 +8,8 @@
|
|||||||
./light-home.nix
|
./light-home.nix
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./email.nix
|
./email.nix
|
||||||
|
./firefox.nix
|
||||||
|
./tmux.nix
|
||||||
./wlr-which-key
|
./wlr-which-key
|
||||||
../modules
|
../modules
|
||||||
];
|
];
|
||||||
@@ -65,79 +67,21 @@
|
|||||||
};
|
};
|
||||||
desktop = {
|
desktop = {
|
||||||
caelestia.enable = true;
|
caelestia.enable = true;
|
||||||
firefox = {
|
|
||||||
enable = true;
|
|
||||||
useZen = true;
|
|
||||||
tridactyl = {
|
|
||||||
enable = true;
|
|
||||||
preConfig = "sanitise tridactyllocal tridactylsync";
|
|
||||||
config = {
|
|
||||||
editorcmd = "emacsclient -c";
|
|
||||||
keyboardlayoutbase = "bepo";
|
|
||||||
keyboardlayoutforce = "true";
|
|
||||||
hintchars = "auiectsr";
|
|
||||||
smothscroll = "true";
|
|
||||||
};
|
|
||||||
extraConfig = ''
|
|
||||||
unbind h
|
|
||||||
unbind j
|
|
||||||
unbind k
|
|
||||||
unbind l
|
|
||||||
unbind c
|
|
||||||
unbind t
|
|
||||||
unbind s
|
|
||||||
unbind r
|
|
||||||
unbind H
|
|
||||||
unbind J
|
|
||||||
unbind K
|
|
||||||
unbind L
|
|
||||||
unbind C
|
|
||||||
unbind T
|
|
||||||
unbind S
|
|
||||||
unbind R
|
|
||||||
|
|
||||||
" === Bépo layout — scrolling (ctsr = hjkl) ===
|
|
||||||
bind c scrollpx -300 0
|
|
||||||
bind t scrollline 5
|
|
||||||
bind s scrollline -5
|
|
||||||
bind r scrollpx 300 0
|
|
||||||
|
|
||||||
" Half/full page scroll (replacing C-f/C-b/C-d/C-u)
|
|
||||||
bind <C-t> scrollpage 0.5
|
|
||||||
bind <C-s> scrollpage -0.5
|
|
||||||
|
|
||||||
" === History navigation (C/R = H/L) ===
|
|
||||||
bind C back
|
|
||||||
bind R forward
|
|
||||||
|
|
||||||
" === Tab navigation (T/S = J/K) ===
|
|
||||||
bind T tabprev
|
|
||||||
bind S tabnext
|
|
||||||
|
|
||||||
" === Displaced commands ===
|
|
||||||
" reload was on r → move to h (bépo's 'replace' position)
|
|
||||||
bind h reload
|
|
||||||
bind H reloadhard
|
|
||||||
|
|
||||||
" tabopen was on t → move to j (bépo's 'find char to' position)
|
|
||||||
bind j fillcmdline tabopen
|
|
||||||
|
|
||||||
unbind ^http(s?)://youtube\.com f
|
|
||||||
unbind ^http(s?)://youtube\.com t
|
|
||||||
unbind ^http(s?)://youtube\.com l
|
|
||||||
unbind ^http(s?)://youtube\.com j
|
|
||||||
unbind ^http(s?)://twitch\.tv f
|
|
||||||
|
|
||||||
bind < urlincrement -1
|
|
||||||
bind > urlincrement 1
|
|
||||||
bind ypv js tri.native.run(`mpv --ytdl-format="[height >=? 480]" --ontop --fs "''${document.location.href}"`)
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
spotify = {
|
spotify = {
|
||||||
enable = true;
|
enable = true;
|
||||||
spicetify.enable = true;
|
spicetify.enable = true;
|
||||||
};
|
};
|
||||||
|
wl-kbptr = {
|
||||||
|
enable = true;
|
||||||
|
config = {
|
||||||
|
general = {
|
||||||
|
# first eight chars to select areas, last three chars
|
||||||
|
# for left, right, middle click
|
||||||
|
home_row_keys = "auiectsrtsr";
|
||||||
|
modes = "tile,bisect";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
dev = {
|
dev = {
|
||||||
ai.claude.enable = true;
|
ai.claude.enable = true;
|
||||||
@@ -145,16 +89,19 @@
|
|||||||
vcs.jj.signing.enable = true;
|
vcs.jj.signing.enable = true;
|
||||||
};
|
};
|
||||||
fullDesktop = true;
|
fullDesktop = true;
|
||||||
file."${config.home.homeDirectory}/.ssh/allowed_signers" = {
|
file = {
|
||||||
enable = true;
|
".XCompose".source = ./XCompose;
|
||||||
text = lib.strings.join "\n" (
|
"${config.home.homeDirectory}/.ssh/allowed_signers" = {
|
||||||
map (file: let
|
enable = true;
|
||||||
content = lib.strings.trim (builtins.readFile file);
|
text = lib.strings.join "\n" (
|
||||||
parts = lib.strings.splitString " " content;
|
map (file: let
|
||||||
email = lib.lists.last parts;
|
content = lib.strings.trim (builtins.readFile file);
|
||||||
in "${email} namespaces=\"git\" ${content}")
|
parts = lib.strings.splitString " " content;
|
||||||
(lib.filesystem.listFilesRecursive ./keys)
|
email = lib.lists.last parts;
|
||||||
);
|
in "${email} namespaces=\"git\" ${content}")
|
||||||
|
(lib.filesystem.listFilesRecursive ./keys)
|
||||||
|
);
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -32,17 +32,16 @@ in {
|
|||||||
audacity
|
audacity
|
||||||
plexamp
|
plexamp
|
||||||
plex-desktop
|
plex-desktop
|
||||||
spicetify-cli
|
|
||||||
pavucontrol # Volume control
|
pavucontrol # Volume control
|
||||||
|
|
||||||
# Social
|
# Social
|
||||||
vesktop # Discord alternative that works well with wayland
|
vesktop # Discord alternative that works well with wayland
|
||||||
element-desktop
|
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
bitwarden-desktop
|
|
||||||
# gplates
|
# gplates
|
||||||
|
kicad-small
|
||||||
|
qgis
|
||||||
handy
|
handy
|
||||||
libnotify
|
libnotify
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
|
|||||||
210
users/phundrak/tmux.nix
Normal file
210
users/phundrak/tmux.nix
Normal file
@@ -0,0 +1,210 @@
|
|||||||
|
{
|
||||||
|
home.shell.tmux = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = "set-option -sa terminal-overrides \",xterm*:Tc\"";
|
||||||
|
unbind = [
|
||||||
|
"C-b"
|
||||||
|
{"copy-mode-vi" = ["H" "J" "K" "L" "h" "j" "k" "l"];}
|
||||||
|
];
|
||||||
|
bind = {
|
||||||
|
prefix = [
|
||||||
|
{
|
||||||
|
key = "«";
|
||||||
|
action = "select-window -p";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "»";
|
||||||
|
action = "select-window -n";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "Tab";
|
||||||
|
action = "switch-client -T windows";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "w";
|
||||||
|
action = "switch-client -T pane";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "y";
|
||||||
|
action = "switch-client -T copy-mode";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
pane = [
|
||||||
|
{
|
||||||
|
key = "/";
|
||||||
|
action = "split-window -h -c \"#{pane-current_path}\"";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "-";
|
||||||
|
action = "split-window -v -c \"#{pane-current_path}\"";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "c";
|
||||||
|
action = "select-pane -L";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "t";
|
||||||
|
action = "select-pane -D";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "s";
|
||||||
|
action = "select-pane -U";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "r";
|
||||||
|
action = "select-pane -R";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "f";
|
||||||
|
action = "resize-pane -Z";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = ".";
|
||||||
|
action = "switch-client -T pane-resize";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
"pane-resize" = [
|
||||||
|
{
|
||||||
|
key = "c";
|
||||||
|
action = "resize-pane -L 5\\; switch-client -T pane-resize";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "t";
|
||||||
|
action = "resize-pane -D 5\\; switch-client -T pane-resize";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "s";
|
||||||
|
action = "resize-pane -U 5\\; switch-client -T pane-resize";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "r";
|
||||||
|
action = "resize-pane -R 5\\; switch-client -T pane-resize";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "C";
|
||||||
|
action = "resize-pane -L\\; switch-client -T pane-resize";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "T";
|
||||||
|
action = "resize-pane -D\\; switch-client -T pane-resize";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "S";
|
||||||
|
action = "resize-pane -U\\; switch-client -T pane-resize";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "R";
|
||||||
|
action = "resize-pane -R\\; switch-client -T pane-resize";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
windows = [
|
||||||
|
{
|
||||||
|
key = "c";
|
||||||
|
action = "new-window";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "n";
|
||||||
|
action = "next-window";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "p";
|
||||||
|
action = "previous-window";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "r";
|
||||||
|
action = "command-prompt \"rename-window '%%'\"";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "\\\"";
|
||||||
|
action = "select-window -t :=1";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "«";
|
||||||
|
action = "select-window -t :=2";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "»";
|
||||||
|
action = "select-window -t :=3";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "(";
|
||||||
|
action = "select-window -t :=4";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = ")";
|
||||||
|
action = "select-window -t :=5";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "@";
|
||||||
|
action = "select-window -t :=6";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "+";
|
||||||
|
action = "select-window -t :=7";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "-";
|
||||||
|
action = "select-window -t :=8";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "/";
|
||||||
|
action = "select-window -t :=9";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "*";
|
||||||
|
action = "select-window -t :=10";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
"copy-mode-vi" = [
|
||||||
|
{
|
||||||
|
key = "v";
|
||||||
|
action = "send-keys -X begin-selection";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "C-v";
|
||||||
|
action = "send-keys -X rectangle-toggle";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "y";
|
||||||
|
action = "send-keys -X copy-selection-and-cancel";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "C";
|
||||||
|
action = "send-keys -X top-line";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "J";
|
||||||
|
action = "send-keys -X jump-to-backward";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "S";
|
||||||
|
action = "send-keys -X scroll-up";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "R";
|
||||||
|
action = "send-keys -X bottom-line";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "T";
|
||||||
|
action = "send-keys -X scroll-down";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "c";
|
||||||
|
action = "send-keys -X cursor-left";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "t";
|
||||||
|
action = "send-keys -X cursor-down";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "s";
|
||||||
|
action = "send-keys -X cursor-up";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "r";
|
||||||
|
action = "send-keys -X cursor-right";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
config.home.desktop.wlr-which-key.settings = {
|
config.home.desktop.wlr-which-key.settings = {
|
||||||
@@ -27,217 +28,223 @@
|
|||||||
logout = import ./logout.nix {inherit pkgs;};
|
logout = import ./logout.nix {inherit pkgs;};
|
||||||
ytplay = import ../../modules/cli/scripts/ytplay.nix {inherit pkgs;};
|
ytplay = import ../../modules/cli/scripts/ytplay.nix {inherit pkgs;};
|
||||||
plock = import ../../modules/cli/scripts/plock.nix {inherit pkgs;};
|
plock = import ../../modules/cli/scripts/plock.nix {inherit pkgs;};
|
||||||
in [
|
in
|
||||||
{
|
[
|
||||||
key = "a";
|
{
|
||||||
desc = "Apps";
|
key = "a";
|
||||||
submenu = [
|
desc = "Apps";
|
||||||
{
|
submenu = [
|
||||||
key = "b";
|
{
|
||||||
desc = "Browser";
|
key = "b";
|
||||||
cmd = "zen";
|
desc = "Browser";
|
||||||
}
|
cmd = "zen";
|
||||||
{
|
}
|
||||||
key = "B";
|
{
|
||||||
desc = "Qutebrowser";
|
key = "B";
|
||||||
cmd = "${pkgs.qutebrowser}/bin/qutebrowser";
|
desc = "Qutebrowser";
|
||||||
}
|
cmd = "${pkgs.qutebrowser}/bin/qutebrowser";
|
||||||
{
|
}
|
||||||
key = "d";
|
{
|
||||||
desc = "Discord";
|
key = "d";
|
||||||
cmd = "${pkgs.vesktop}/bin/vesktop";
|
desc = "Discord";
|
||||||
}
|
cmd = "${pkgs.vesktop}/bin/vesktop";
|
||||||
{
|
}
|
||||||
key = "e";
|
{
|
||||||
desc = "Emacs";
|
key = "e";
|
||||||
cmd = "${config.home.dev.editors.emacs.package}/bin/emacsclient -c -n";
|
desc = "Emacs";
|
||||||
}
|
cmd = "${config.home.dev.editors.emacs.package}/bin/emacsclient -c -n";
|
||||||
{
|
}
|
||||||
key = "g";
|
{
|
||||||
desc = "Gimp";
|
key = "g";
|
||||||
cmd = "${pkgs.gimp}/bin/gimp";
|
desc = "Gimp";
|
||||||
}
|
cmd = "${pkgs.gimp}/bin/gimp";
|
||||||
{
|
}
|
||||||
key = "h";
|
{
|
||||||
desc = "Handy";
|
key = "h";
|
||||||
cmd = "pkill -USR2 -n handy";
|
desc = "Handy";
|
||||||
}
|
cmd = "pkill -USR2 -n handy";
|
||||||
{
|
}
|
||||||
key = "n";
|
{
|
||||||
desc = "Nemo";
|
key = "n";
|
||||||
cmd = "${pkgs.nemo-with-extensions}/bin/nemo";
|
desc = "Nemo";
|
||||||
}
|
cmd = "${pkgs.nemo-with-extensions}/bin/nemo";
|
||||||
{
|
}
|
||||||
key = "N";
|
{
|
||||||
desc = "Nextcloud";
|
key = "N";
|
||||||
cmd = "${pkgs.nextcloud-client}/bin/nextcloud";
|
desc = "Nextcloud";
|
||||||
}
|
cmd = "${pkgs.nextcloud-client}/bin/nextcloud";
|
||||||
{
|
}
|
||||||
key = "r";
|
{
|
||||||
desc = "Rofi";
|
key = "r";
|
||||||
submenu = [
|
desc = "Rofi";
|
||||||
{
|
submenu = [
|
||||||
key = "b";
|
{
|
||||||
desc = "Bluetooth";
|
key = "b";
|
||||||
cmd = "${pkgs.rofi-bluetooth}/bin/rofi-bluetooth";
|
desc = "Bluetooth";
|
||||||
}
|
cmd = "${pkgs.rofi-bluetooth}/bin/rofi-bluetooth";
|
||||||
{
|
}
|
||||||
key = "c";
|
{
|
||||||
desc = "calc";
|
key = "c";
|
||||||
cmd = "rofi -show calc";
|
desc = "calc";
|
||||||
}
|
cmd = "rofi -show calc";
|
||||||
{
|
}
|
||||||
key = "e";
|
{
|
||||||
desc = "Emoji";
|
key = "e";
|
||||||
cmd = "rofi -show emoji";
|
desc = "Emoji";
|
||||||
}
|
cmd = "rofi -show emoji";
|
||||||
{
|
}
|
||||||
key = "r";
|
{
|
||||||
desc = "App Menu";
|
key = "r";
|
||||||
cmd = "rofi -show drun";
|
desc = "App Menu";
|
||||||
}
|
cmd = "rofi -show drun";
|
||||||
{
|
}
|
||||||
key = "s";
|
{
|
||||||
desc = "SSH";
|
key = "s";
|
||||||
cmd = "rofi -show ssh";
|
desc = "SSH";
|
||||||
}
|
cmd = "rofi -show ssh";
|
||||||
{
|
}
|
||||||
key = "y";
|
{
|
||||||
desc = "YouTube";
|
key = "y";
|
||||||
cmd = "${ytplay}/bin/ytplay";
|
desc = "YouTube";
|
||||||
}
|
cmd = "${ytplay}/bin/ytplay";
|
||||||
];
|
}
|
||||||
}
|
];
|
||||||
];
|
}
|
||||||
}
|
];
|
||||||
{
|
}
|
||||||
key = "b";
|
{
|
||||||
desc = "Buffers";
|
key = "b";
|
||||||
submenu = [
|
desc = "Buffers";
|
||||||
{
|
submenu = [
|
||||||
key = "c";
|
{
|
||||||
desc = "Center";
|
key = "c";
|
||||||
cmd = "${center-window}/bin/center-window";
|
desc = "Center";
|
||||||
}
|
cmd = "${center-window}/bin/center-window";
|
||||||
{
|
}
|
||||||
key = "d";
|
{
|
||||||
desc = "Close";
|
key = "d";
|
||||||
cmd = "${close-window}/bin/close-window";
|
desc = "Close";
|
||||||
}
|
cmd = "${close-window}/bin/close-window";
|
||||||
{
|
}
|
||||||
key = "f";
|
{
|
||||||
desc = "Fullscreen";
|
key = "f";
|
||||||
cmd = "${fullscreen}/bin/fullscreen";
|
desc = "Fullscreen";
|
||||||
}
|
cmd = "${fullscreen}/bin/fullscreen";
|
||||||
{
|
}
|
||||||
key = "F";
|
{
|
||||||
desc = "Float";
|
key = "F";
|
||||||
cmd = "${float-window}/bin/float-window";
|
desc = "Float";
|
||||||
}
|
cmd = "${float-window}/bin/float-window";
|
||||||
{
|
}
|
||||||
key = "u";
|
{
|
||||||
desc = "Urgent";
|
key = "u";
|
||||||
cmd = "${focus-urgent}/bin/focus-urgent";
|
desc = "Urgent";
|
||||||
}
|
cmd = "${focus-urgent}/bin/focus-urgent";
|
||||||
{
|
}
|
||||||
key = ".";
|
{
|
||||||
desc = "Resize";
|
key = ".";
|
||||||
submenu = [
|
desc = "Resize";
|
||||||
{
|
submenu = [
|
||||||
key = left;
|
{
|
||||||
desc = "Decrease Width";
|
key = left;
|
||||||
cmd = "echo decrease width";
|
desc = "Decrease Width";
|
||||||
keep-open = true;
|
cmd = "echo decrease width";
|
||||||
}
|
keep-open = true;
|
||||||
{
|
}
|
||||||
key = down;
|
{
|
||||||
desc = "Increase Height";
|
key = down;
|
||||||
cmd = "echo decrease height";
|
desc = "Increase Height";
|
||||||
keep-open = true;
|
cmd = "echo decrease height";
|
||||||
}
|
keep-open = true;
|
||||||
{
|
}
|
||||||
key = up;
|
{
|
||||||
desc = "Decrease Height";
|
key = up;
|
||||||
cmd = "echo decrease height";
|
desc = "Decrease Height";
|
||||||
keep-open = true;
|
cmd = "echo decrease height";
|
||||||
}
|
keep-open = true;
|
||||||
{
|
}
|
||||||
key = right;
|
{
|
||||||
desc = "Increase Width";
|
key = right;
|
||||||
cmd = "echo increase width";
|
desc = "Increase Width";
|
||||||
keep-open = true;
|
cmd = "echo increase width";
|
||||||
}
|
keep-open = true;
|
||||||
];
|
}
|
||||||
}
|
];
|
||||||
];
|
}
|
||||||
}
|
];
|
||||||
{
|
}
|
||||||
key = "l";
|
{
|
||||||
desc = "Lock session";
|
key = "l";
|
||||||
cmd = "${plock}/bin/plock";
|
desc = "Lock session";
|
||||||
}
|
cmd = "${plock}/bin/plock";
|
||||||
{
|
}
|
||||||
key = "p";
|
{
|
||||||
desc = "Power";
|
key = "p";
|
||||||
submenu = [
|
desc = "Power";
|
||||||
{
|
submenu = [
|
||||||
key = "l";
|
{
|
||||||
desc = "Logout";
|
key = "l";
|
||||||
cmd = "${logout}/bin/logout";
|
desc = "Logout";
|
||||||
}
|
cmd = "${logout}/bin/logout";
|
||||||
{
|
}
|
||||||
key = "s";
|
{
|
||||||
desc = "Suspend";
|
key = "s";
|
||||||
cmd = "systemctl suspend";
|
desc = "Suspend";
|
||||||
}
|
cmd = "systemctl suspend";
|
||||||
{
|
}
|
||||||
key = "r";
|
{
|
||||||
desc = "Reboot";
|
key = "r";
|
||||||
cmd = "systemctl reboot";
|
desc = "Reboot";
|
||||||
}
|
cmd = "systemctl reboot";
|
||||||
{
|
}
|
||||||
key = "o";
|
{
|
||||||
desc = "Poweroff";
|
key = "o";
|
||||||
cmd = "systemctl poweroff";
|
desc = "Poweroff";
|
||||||
}
|
cmd = "systemctl poweroff";
|
||||||
];
|
}
|
||||||
}
|
];
|
||||||
{
|
}
|
||||||
key = "s";
|
{
|
||||||
desc = "Screenshots";
|
key = "s";
|
||||||
submenu = [
|
desc = "Screenshots";
|
||||||
{
|
submenu = [
|
||||||
key = "Print";
|
{
|
||||||
desc = "Screenshot";
|
key = "Print";
|
||||||
cmd = "screenshot";
|
desc = "Screenshot";
|
||||||
}
|
cmd = "screenshot";
|
||||||
{
|
}
|
||||||
key = "d";
|
{
|
||||||
desc = "Delayed";
|
key = "d";
|
||||||
cmd = "screenshot -d 3";
|
desc = "Delayed";
|
||||||
}
|
cmd = "screenshot -d 3";
|
||||||
{
|
}
|
||||||
key = "D";
|
{
|
||||||
desc = "Select, Delay, Edit, and Copy";
|
key = "D";
|
||||||
cmd = "screenshot -secd 3";
|
desc = "Select, Delay, Edit, and Copy";
|
||||||
}
|
cmd = "screenshot -secd 3";
|
||||||
{
|
}
|
||||||
key = "e";
|
{
|
||||||
desc = "Select, Edit, and Copy";
|
key = "e";
|
||||||
cmd = "screenshot -sec";
|
desc = "Select, Edit, and Copy";
|
||||||
}
|
cmd = "screenshot -sec";
|
||||||
{
|
}
|
||||||
key = "g";
|
{
|
||||||
desc = "Select, Gimp, and Copy";
|
key = "g";
|
||||||
cmd = "screenshot -sgc";
|
desc = "Select, Gimp, and Copy";
|
||||||
}
|
cmd = "screenshot -sgc";
|
||||||
{
|
}
|
||||||
key = "s";
|
{
|
||||||
desc = "Select and Copy";
|
key = "s";
|
||||||
cmd = "screenshot -sc";
|
desc = "Select and Copy";
|
||||||
}
|
cmd = "screenshot -sc";
|
||||||
];
|
}
|
||||||
}
|
];
|
||||||
];
|
}
|
||||||
|
]
|
||||||
|
++ lib.lists.optional config.home.desktop.wl-kbptr.enable {
|
||||||
|
key = "m";
|
||||||
|
desc = "Mouse Warp";
|
||||||
|
cmd = "wl-kbptr";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user