mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
made sxhkd actually work moved to a different file and merged with nixosConfigurations
This commit is contained in:
parent
4ad79a70d1
commit
6f6302e27a
4 changed files with 6 additions and 10 deletions
|
|
@ -27,6 +27,7 @@
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
spicetify-nix,
|
spicetify-nix,
|
||||||
|
sxhkd-flake,
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs: let
|
||||||
settings = {
|
settings = {
|
||||||
|
|
@ -59,7 +60,7 @@
|
||||||
inherit system pkgs;
|
inherit system pkgs;
|
||||||
specialArgs = {inherit inputs settings;};
|
specialArgs = {inherit inputs settings;};
|
||||||
modules = [
|
modules = [
|
||||||
(import ./modules/sxhkd.nix inputs)
|
sxhkd-flake.nixosModules.sxhkd
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./systems/desktop.nix
|
./systems/desktop.nix
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,4 @@
|
||||||
{sxhkd-flake, ...}: {
|
{
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
options,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: (sxhkd-flake.nixosModules.sxhkd {
|
|
||||||
inherit lib config options pkgs;
|
|
||||||
services.sxhkd = {
|
services.sxhkd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
keybindings = {
|
keybindings = {
|
||||||
|
|
@ -27,4 +20,4 @@
|
||||||
"super + Print + shift" = "maim -s | xclip -selection clipboard -t image/png";
|
"super + Print + shift" = "maim -s | xclip -selection clipboard -t image/png";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@
|
||||||
"picom"
|
"picom"
|
||||||
"refreshrate"
|
"refreshrate"
|
||||||
"scripts"
|
"scripts"
|
||||||
|
"sxhkd"
|
||||||
"vfio"
|
"vfio"
|
||||||
"xserver"
|
"xserver"
|
||||||
"zsh"
|
"zsh"
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@
|
||||||
"picom"
|
"picom"
|
||||||
"prime"
|
"prime"
|
||||||
"scripts"
|
"scripts"
|
||||||
|
"sxhkd"
|
||||||
"xserver"
|
"xserver"
|
||||||
"zsh"
|
"zsh"
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue