style: change some nix formatting
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
7ea031e84e
commit
158f0a6813
28 changed files with 84 additions and 137 deletions
|
@ -123,9 +123,7 @@ in {
|
|||
#profileExtra = ''
|
||||
#'';
|
||||
bashrcExtra =
|
||||
/*
|
||||
bash
|
||||
*/
|
||||
# bash
|
||||
''
|
||||
# Check if shell is interactive
|
||||
[[ $- == *i* ]] || return 0
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
{path = toString self.packages.${pkgs.system}.dracula.git;}
|
||||
|
||||
{
|
||||
# FIXME: add https config
|
||||
condition = "hasconfig:remote.*.url:git@github.com:*/**";
|
||||
contents = {
|
||||
user = {
|
||||
|
|
|
@ -19,9 +19,7 @@ in {
|
|||
package = neovim-nightly.packages.${pkgs.system}.neovim;
|
||||
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
-- by default, the indent is 2 spaces.
|
||||
vim.opt.smartindent = true;
|
||||
|
@ -55,9 +53,7 @@ in {
|
|||
plugin = vimPlugins.todo-comments-nvim;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
require('todo-comments').setup();
|
||||
'';
|
||||
|
@ -66,9 +62,7 @@ in {
|
|||
plugin = vimPlugins.mini-nvim;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
-- TODO: see how this works
|
||||
local ts_input = require('mini.surround').gen_spec.input.treesitter;
|
||||
|
|
|
@ -10,9 +10,7 @@ in {
|
|||
plugin = vimPlugins.gitsigns-nvim;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
local gitsigns = require("gitsigns");
|
||||
|
||||
|
|
|
@ -25,13 +25,11 @@ in {
|
|||
|
||||
extraLuaConfig =
|
||||
lib.mkIf neovimIde
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
vim.api.nvim_create_autocmd('FileType', {
|
||||
pattern = 'sh',
|
||||
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
|
||||
pattern = 'sh',
|
||||
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
|
||||
});
|
||||
|
||||
require('lspconfig').bashls.setup(require('coq').lsp_ensure_capabilities({
|
||||
|
|
|
@ -17,9 +17,7 @@ in
|
|||
];
|
||||
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
local lsp = require('lspconfig');
|
||||
local coq = require('coq');
|
||||
|
|
|
@ -25,9 +25,7 @@ in {
|
|||
neovim = {
|
||||
extraLuaConfig =
|
||||
lib.mkBefore
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
-- Get rid of deprecated functions
|
||||
vim.tbl_add_reverse_lookup = function(tbl)
|
||||
|
@ -47,12 +45,12 @@ in {
|
|||
|
||||
-- Start completion / snippet stuff
|
||||
vim.g.coq_settings = {
|
||||
auto_start = 'shut-up',
|
||||
keymap = {
|
||||
recommended = false,
|
||||
},
|
||||
-- https://github.com/NixOS/nixpkgs/issues/168928#issuecomment-1109581739
|
||||
xdg = true,
|
||||
auto_start = 'shut-up',
|
||||
keymap = {
|
||||
recommended = false,
|
||||
},
|
||||
-- https://github.com/NixOS/nixpkgs/issues/168928#issuecomment-1109581739
|
||||
xdg = true,
|
||||
};
|
||||
|
||||
-- Add formatting cmd
|
||||
|
|
|
@ -9,9 +9,7 @@ in
|
|||
programs = {
|
||||
neovim = {
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
vim.filetype.add({
|
||||
pattern = { ['.*/hypr/.*%.conf'] = 'hyprlang' },
|
||||
|
|
|
@ -27,9 +27,7 @@ in
|
|||
extraPackages = javaPkgs;
|
||||
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
vim.api.nvim_create_autocmd('FileType', {
|
||||
pattern = 'java',
|
||||
|
@ -43,10 +41,9 @@ in
|
|||
plugin = vimPlugins.nvim-jdtls;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
--
|
||||
local startJdtls = function()
|
||||
local config = require('coq').lsp_ensure_capabilities({
|
||||
cmd = { '${lib.getExe pkgs.jdt-language-server}' },
|
||||
|
|
|
@ -15,9 +15,7 @@ in
|
|||
];
|
||||
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
vim.api.nvim_create_autocmd('FileType', {
|
||||
pattern = 'yaml',
|
||||
|
|
|
@ -21,9 +21,7 @@ in
|
|||
plugin = vimPlugins.neodev-nvim;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
vim.api.nvim_create_autocmd('FileType', {
|
||||
pattern = 'lua',
|
||||
|
|
|
@ -27,9 +27,7 @@ in
|
|||
];
|
||||
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
local lsp = require('lspconfig');
|
||||
local coq = require('coq');
|
||||
|
@ -53,9 +51,7 @@ in
|
|||
plugin = buildPlugin "easytables-nvim" vimplugin-easytables-src;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
require('easytables').setup();
|
||||
'';
|
||||
|
@ -65,10 +61,9 @@ in
|
|||
plugin = vimPlugins.knap;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
--
|
||||
vim.api.nvim_create_autocmd('FileType', {
|
||||
pattern = 'tex',
|
||||
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
|
||||
|
|
|
@ -47,17 +47,16 @@ in
|
|||
];
|
||||
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
require('lspconfig').nixd.setup(require('coq').lsp_ensure_capabilities({
|
||||
filetypes = { 'nix', 'in.nix' },
|
||||
settings = {
|
||||
nixd = {
|
||||
formatting = {
|
||||
command = { '${lib.getExe pkgs.alejandra}' },
|
||||
},
|
||||
formatting = {
|
||||
-- TODO: Try to find <flake>.formatter
|
||||
command = { '${lib.getExe pkgs.alejandra}' },
|
||||
},
|
||||
},
|
||||
},
|
||||
}));
|
||||
|
|
|
@ -16,9 +16,7 @@ in
|
|||
];
|
||||
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
require('lspconfig').basedpyright.setup(
|
||||
require('coq').lsp_ensure_capabilities({}));
|
||||
|
|
|
@ -17,9 +17,7 @@ in
|
|||
];
|
||||
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
vim.api.nvim_create_autocmd('FileType', {
|
||||
pattern = { 'rust' },
|
||||
|
|
|
@ -30,9 +30,7 @@ in
|
|||
];
|
||||
|
||||
extraLuaConfig =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
vim.api.nvim_create_autocmd('FileType', {
|
||||
pattern = { 'javascript', 'typescript', 'css', 'scss' },
|
||||
|
|
|
@ -23,9 +23,7 @@ in {
|
|||
};
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
-- set dot icon in place of trailing whitespaces
|
||||
vim.opt.listchars = {
|
||||
|
@ -48,10 +46,9 @@ in {
|
|||
plugin = vimPlugins.indent-blankline-nvim;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
--
|
||||
local highlight = {
|
||||
"RainbowRed",
|
||||
"RainbowYellow",
|
||||
|
@ -100,10 +97,9 @@ in {
|
|||
plugin = vimPlugins.codewindow-nvim;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
--
|
||||
local codewindow = require('codewindow');
|
||||
|
||||
codewindow.setup({
|
||||
|
@ -130,19 +126,35 @@ in {
|
|||
plugin = vimPlugins.transparent-nvim;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
require("transparent").setup({
|
||||
require('transparent').setup({
|
||||
groups = {
|
||||
'Normal', 'NormalNC', 'Comment', 'Constant',
|
||||
'Special', 'Identifier', 'Statement', 'PreProc',
|
||||
'Type', 'Underlined', 'Todo', 'String', 'Function',
|
||||
'Conditional', 'Repeat', 'Operator', 'Structure',
|
||||
'LineNr', 'NonText', 'SignColumn', 'CursorLine',
|
||||
'CursorLineNr', 'StatusLine', 'StatusLineNC',
|
||||
'EndOfBuffer',
|
||||
'Normal',
|
||||
'NormalNC',
|
||||
'Comment',
|
||||
'Constant',
|
||||
'Special',
|
||||
'Identifier',
|
||||
'Statement',
|
||||
'PreProc',
|
||||
'Type',
|
||||
'Underlined',
|
||||
'Todo',
|
||||
'String',
|
||||
'Function',
|
||||
'Conditional',
|
||||
'Repeat',
|
||||
'Operator',
|
||||
'Structure',
|
||||
'LineNr',
|
||||
'NonText',
|
||||
'SignColumn',
|
||||
'CursorLine',
|
||||
'CursorLineNr',
|
||||
'StatusLine',
|
||||
'StatusLineNC',
|
||||
'EndOfBuffer',
|
||||
},
|
||||
extra_groups = {},
|
||||
exclude_groups = {},
|
||||
|
|
|
@ -8,9 +8,7 @@ in {
|
|||
plugin = vimPlugins.nvim-treesitter-context;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
require('treesitter-context').setup({
|
||||
enable = true,
|
||||
|
@ -28,9 +26,7 @@ in {
|
|||
plugin = vimPlugins.nvim-treesitter.withAllGrammars;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
# lua
|
||||
''
|
||||
require('nvim-treesitter.configs').setup({
|
||||
highlight = { enable = true },
|
||||
|
|
|
@ -14,9 +14,7 @@
|
|||
plugins = with pkgs.tmuxPlugins; [dracula];
|
||||
|
||||
extraConfig =
|
||||
/*
|
||||
bash
|
||||
*/
|
||||
# bash
|
||||
''
|
||||
bind-key -n Home send Escape "OH"
|
||||
bind-key -n End send Escape "OF"
|
||||
|
|
|
@ -4,9 +4,7 @@ in {
|
|||
# https://nixos.wiki/wiki/Distributed_build
|
||||
home-manager.users.root = {
|
||||
home.file.".ssh/config".text =
|
||||
/*
|
||||
ssh_config
|
||||
*/
|
||||
# ssh_config
|
||||
''
|
||||
Host ${servivi}
|
||||
# Prevent using ssh-agent or another keyfile, useful for testing
|
||||
|
|
|
@ -119,9 +119,7 @@
|
|||
power-profiles-daemon.enable = false;
|
||||
|
||||
udev.extraRules =
|
||||
/*
|
||||
udev
|
||||
*/
|
||||
# udev
|
||||
''
|
||||
# give permanent path to keyboard XF86* binds
|
||||
SUBSYSTEMS=="input", ATTRS{id/product}=="0006", ATTRS{id/vendor}=="0000", SYMLINK += "video-bus"
|
||||
|
|
|
@ -25,9 +25,7 @@
|
|||
allowSubstitutes = true;
|
||||
|
||||
buildCommand =
|
||||
/*
|
||||
bash
|
||||
*/
|
||||
# bash
|
||||
''
|
||||
dst="$out/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
|
||||
mkdir -p "$dst"
|
||||
|
|
|
@ -8,9 +8,7 @@ in {
|
|||
programs = {
|
||||
# https://codeberg.org/dnkl/foot/wiki#spawning-new-terminal-instances-in-the-current-working-directory
|
||||
bash.bashrcExtra =
|
||||
/*
|
||||
bash
|
||||
*/
|
||||
# bash
|
||||
''
|
||||
osc7_cwd() {
|
||||
local strlen=''${#PWD}
|
||||
|
|
|
@ -21,9 +21,7 @@ in {
|
|||
xdg.configFile = let
|
||||
floatFont = lib.strings.floatToString fontSize;
|
||||
qtconf =
|
||||
/*
|
||||
ini
|
||||
*/
|
||||
# ini
|
||||
''
|
||||
[Fonts]
|
||||
fixed="Sans Serif,${floatFont},-1,5,50,0,0,0,0,0"
|
||||
|
|
|
@ -34,9 +34,7 @@ in {
|
|||
inherit (lib) hasPrefix mdDoc optionals removePrefix;
|
||||
|
||||
configJs =
|
||||
/*
|
||||
javascript
|
||||
*/
|
||||
# javascript
|
||||
''
|
||||
import { transpileTypeScript } from './js/utils.js';
|
||||
|
||||
|
@ -88,10 +86,9 @@ in {
|
|||
"${agsConfigDir}/config/config.js".text = configJs;
|
||||
|
||||
"${agsConfigDir}/config/ts/lockscreen/vars.ts".text =
|
||||
/*
|
||||
javascript
|
||||
*/
|
||||
# javascript
|
||||
''
|
||||
//
|
||||
export default {
|
||||
mainMonitor: '${mainMonitor}',
|
||||
dupeLockscreen: ${boolToString greetdDupe},
|
||||
|
|
|
@ -9,9 +9,7 @@
|
|||
};
|
||||
|
||||
"${agsConfigDir}/config/icons/nixos-logo-symbolic.svg".text =
|
||||
/*
|
||||
xml
|
||||
*/
|
||||
# xml
|
||||
''
|
||||
<svg viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
|
|
|
@ -37,9 +37,7 @@ in {
|
|||
};
|
||||
|
||||
"astal/config.js".text =
|
||||
/*
|
||||
javascript
|
||||
*/
|
||||
# javascript
|
||||
''
|
||||
import { transpileTypeScript } from './js/utils.js';
|
||||
|
||||
|
|
|
@ -44,9 +44,7 @@
|
|||
in {
|
||||
hyprConf = pkgs.writeText "greetd-hypr-config" (
|
||||
(optionalString config.nvidia.enable
|
||||
/*
|
||||
hyprlang
|
||||
*/
|
||||
# hyprlang
|
||||
''
|
||||
env = LIBVA_DRIVER_NAME,nvidia
|
||||
env = XDG_SESSION_TYPE,wayland
|
||||
|
@ -56,11 +54,8 @@ in {
|
|||
'')
|
||||
+ (concatStringsSep "\n" (map (x: "monitor=${x}") monitors))
|
||||
+
|
||||
/*
|
||||
hyprlang
|
||||
*/
|
||||
# hyprlang
|
||||
''
|
||||
|
||||
misc {
|
||||
${mkHyprBlock misc}
|
||||
}
|
||||
|
@ -74,10 +69,9 @@ in {
|
|||
|
||||
''
|
||||
+
|
||||
/*
|
||||
hyprlang
|
||||
*/
|
||||
# hyprlang
|
||||
''
|
||||
#
|
||||
env = XCURSOR_SIZE,24
|
||||
exec-once = hyprctl setcursor Dracula-cursors 24
|
||||
|
||||
|
|
Loading…
Reference in a new issue