format
This commit is contained in:
parent
ca39b169c2
commit
825381f98b
7 changed files with 31 additions and 23 deletions
|
|
@ -110,5 +110,4 @@ in {
|
|||
};
|
||||
}
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,4 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
imports = [
|
||||
./pcmanfm.nix
|
||||
./mpv.nix
|
||||
|
|
@ -34,7 +31,6 @@
|
|||
bitwarden
|
||||
];
|
||||
|
||||
|
||||
xdg.mimeApps.defaultApplications = {
|
||||
"application/pdf" = "sioyek.desktop";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
{config, pkgs, lib, ...}: {
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
programs.nixvim =
|
||||
{
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -41,7 +41,6 @@ in {
|
|||
remoteWorkspaceFolder=$(echo $res | ${jq} -r '.remoteWorkspaceFolder')
|
||||
docker exec -it --workdir=$remoteWorkspaceFolder $containerId bash
|
||||
''))
|
||||
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
|
|
|
|||
|
|
@ -256,9 +256,18 @@
|
|||
enable = true;
|
||||
lookahead = true;
|
||||
keymaps = {
|
||||
"af" = { query = "@function.outer"; desc = "Function Outer"; };
|
||||
"ac" = { query = "@comment.outer"; desc = "Comment Outer"; };
|
||||
"if" = { query = "@function.inner"; desc = "Function Inner"; };
|
||||
"af" = {
|
||||
query = "@function.outer";
|
||||
desc = "Function Outer";
|
||||
};
|
||||
"ac" = {
|
||||
query = "@comment.outer";
|
||||
desc = "Comment Outer";
|
||||
};
|
||||
"if" = {
|
||||
query = "@function.inner";
|
||||
desc = "Function Inner";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
@ -267,5 +276,4 @@
|
|||
ts-autotag.enable = true;
|
||||
guess-indent.enable = true;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ in {
|
|||
"openssl-1.1.1w" # required for mongodb
|
||||
];
|
||||
|
||||
|
||||
networking = {
|
||||
networkmanager = {
|
||||
plugins = [pkgs.networkmanager-openvpn];
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{stdenv, pkgs, ...}:
|
||||
let
|
||||
{
|
||||
stdenv,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
version = "6.0.14";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
|
|
@ -29,4 +32,3 @@ in
|
|||
runHook postInstall
|
||||
'';
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue