I'm working on micro-controllers again, can you tell?
This commit is contained in:
parent
c2068a30ff
commit
64ab21f7dd
|
@ -5,6 +5,7 @@
|
||||||
xorg = true;
|
xorg = true;
|
||||||
};
|
};
|
||||||
dev = {
|
dev = {
|
||||||
|
c = true;
|
||||||
docker = true;
|
docker = true;
|
||||||
vm = true;
|
vm = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -28,7 +28,10 @@
|
||||||
programs.bash.shellAliases = {
|
programs.bash.shellAliases = {
|
||||||
gdb = "gdb -x ${config.xdg.configHome}/gdbinit";
|
gdb = "gdb -x ${config.xdg.configHome}/gdbinit";
|
||||||
};
|
};
|
||||||
programs.nixvim.plugins.dap.enable = true; # Debug Adapter Protocol client
|
programs.nixvim.plugins = {
|
||||||
|
dap.enable = true; # Debug Adapter Protocol client
|
||||||
|
lsp.servers.clangd.enable = true;
|
||||||
|
};
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"ccache.conf" = {
|
"ccache.conf" = {
|
||||||
text = "ccache_dir = ${config.xdg.cacheHome}/ccache";
|
text = "ccache_dir = ${config.xdg.cacheHome}/ccache";
|
||||||
|
|
|
@ -16,6 +16,8 @@
|
||||||
};
|
};
|
||||||
users.extraGroups.libvirtd.members = [ "geoffrey" ];
|
users.extraGroups.libvirtd.members = [ "geoffrey" ];
|
||||||
})
|
})
|
||||||
|
{
|
||||||
|
users.extraGroups.dialout.members = [ "geoffrey" ];
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue