Espanso for ..date expansion etc.
This commit is contained in:
parent
0d37c9fe95
commit
da7e352e8d
17
nixos/flake.lock
generated
17
nixos/flake.lock
generated
@ -1,5 +1,21 @@
|
|||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
|
"espanso-fix": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1733174540,
|
||||||
|
"narHash": "sha256-Yv72ufzlbccsUgjnDtLfybPS4HJ7v3lN+pjmcH3/l+I=",
|
||||||
|
"owner": "pitkling",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "2c39301457f9b5cb18a042a1f5643b15de551c79",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "pitkling",
|
||||||
|
"ref": "espanso-fix-capabilities-export",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1734875076,
|
"lastModified": 1734875076,
|
||||||
@ -18,6 +34,7 @@
|
|||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"espanso-fix": "espanso-fix",
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,9 +3,10 @@
|
|||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
||||||
|
espanso-fix.url = "github:pitkling/nixpkgs/espanso-fix-capabilities-export";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... } @ inputs:
|
outputs = { self, nixpkgs, espanso-fix, ... } @ inputs:
|
||||||
let
|
let
|
||||||
inherit (self) outputs;
|
inherit (self) outputs;
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
@ -14,7 +15,10 @@
|
|||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
macbook = nixpkgs.lib.nixosSystem {
|
macbook = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs outputs; };
|
specialArgs = { inherit inputs outputs; };
|
||||||
modules = [ ./nixos/configuration.nix ];
|
modules = [
|
||||||
|
./nixos/configuration.nix
|
||||||
|
espanso-fix.nixosModules.espanso-capdacoverride
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -141,6 +141,11 @@
|
|||||||
dataDir = "/home/thomas";
|
dataDir = "/home/thomas";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.espanso = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.espanso-wayland;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
@ -165,6 +170,7 @@
|
|||||||
docker-compose
|
docker-compose
|
||||||
kitty
|
kitty
|
||||||
obsidian
|
obsidian
|
||||||
|
python3Full
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable the OpenSSH daemon.
|
# Enable the OpenSSH daemon.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user