Compare commits

..

1 commit

Author SHA1 Message Date
Ching Pei Yang
ff0bb81222
Merge 95705bc43b into fd90cf7fd5 2024-08-12 22:02:34 +01:00
4 changed files with 2022 additions and 2035 deletions

View file

@ -69,11 +69,11 @@
},
"mnw": {
"locked": {
"lastModified": 1724456641,
"narHash": "sha256-SMgnviF6ofBPbyV3+rljPGcX0Hn9HBOhgXE10Cyjaic=",
"lastModified": 1722191188,
"narHash": "sha256-YF//iMALbrd2Ni9aju7w8NniH16Qz6RFTRD6md5UkDc=",
"owner": "Gerg-L",
"repo": "mnw",
"rev": "c261925dbbf02f523af0e8add844df64fddf0359",
"rev": "c7b289f3f5a31b6e744be37d83fc231816621231",
"type": "github"
},
"original": {
@ -84,10 +84,7 @@
},
"naersk": {
"inputs": {
"nixpkgs": [
"rnix-lsp",
"nixpkgs"
]
"nixpkgs": ["rnix-lsp", "nixpkgs"]
},
"locked": {
"lastModified": 1655042882,
@ -105,12 +102,8 @@
},
"nil": {
"inputs": {
"flake-utils": [
"flake-utils"
],
"nixpkgs": [
"nixpkgs"
],
"flake-utils": ["flake-utils"],
"nixpkgs": ["nixpkgs"],
"rust-overlay": "rust-overlay"
},
"locked": {
@ -1939,14 +1932,8 @@
},
"rust-overlay": {
"inputs": {
"flake-utils": [
"nil",
"flake-utils"
],
"nixpkgs": [
"nil",
"nixpkgs"
]
"flake-utils": ["nil", "flake-utils"],
"nixpkgs": ["nil", "nixpkgs"]
},
"locked": {
"lastModified": 1714529851,

View file

@ -57,7 +57,7 @@
dapConfig = ''
dap.adapters.lldb = {
type = 'executable',
command = '${cfg.dap.package}/bin/lldb-dap',
command = '${cfg.dap.package}/bin/lldb-vscode',
name = 'lldb'
}
dap.configurations.cpp = {

View file

@ -173,7 +173,7 @@ in {
dap = {
adapter = {
type = "executable",
command = "${cfg.dap.package}/bin/lldb-dap",
command = "${cfg.dap.package}/bin/lldb-vscode",
name = "rustacean_lldb",
},
},

View file

@ -6,7 +6,7 @@
inherit (lib.trivial) boolToString warnIf;
in {
onedark = {
setup = {style ? "dark", ...}: ''
setup = {style ? "dark"}: ''
-- OneDark theme
require('onedark').setup {
style = "${style}"
@ -30,7 +30,7 @@ in {
};
dracula = {
setup = {transparent, ...}: ''
setup = {transparent}: ''
require('dracula').setup({
transparent_bg = ${boolToString transparent},
});