1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-30 22:53:37 +00:00
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
Rae 5e 2025-01-21 18:39:20 -05:00
parent 00dea0e846
commit 0c5c03049b
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
6 changed files with 43 additions and 21 deletions

1
TODO
View file

@ -27,6 +27,7 @@
+- [ ] Maybe symlink your music to a music folder in your home directory or something (i.e. `~/Music -> /mnt/world/music` or perhaps a subdirectory of that?)
[ ] alvr doesnt work :(
[ ] Using clangd and gcc ??? Also clang-tools is atrociously big
[ ] Try getting `ultram4rine.vscode-choosealicense` (either locally via overlays and `buildVscodeMarketplaceExtension` or via <https://github.com/nix-community/nix-vscode-extensions>)
[x] Get PulseAudio sound controls on polybar to work
[x] Add desktop switching to windows (context menu?)

View file

@ -1,5 +1,4 @@
{ pkgs, inputs, ... }:
{
{ pkgs, inputs, ... }: {
nixpkgs.overlays = import ../overlays.nix inputs;
home = {
@ -42,19 +41,6 @@
font = "Fira Code Light 11";
terminal = "kitty";
};
vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
editorconfig.editorconfig
jnoortheen.nix-ide
llvm-vs-code-extensions.vscode-clangd
mesonbuild.mesonbuild
rust-lang.rust-analyzer
skellock.just
wakatime.vscode-wakatime
];
};
};
services = {

View file

@ -1,5 +1,4 @@
{ ... }:
{
{ ... }: {
dconf.settings = {
"io/elementary/code/settings" = {
font = "Fira Code Light 10";

View file

@ -1,5 +1,4 @@
{ ... }:
{
{ ... }: {
imports = [
./base.nix
@ -7,6 +6,7 @@
./firefox.nix
./neovim.nix
./polybar.nix
./vscode.nix
./yambar.nix
];
}

View file

@ -1,5 +1,4 @@
{ ... }:
{
{ ... }: {
services.polybar = {
enable = true;
script = "polybar &";

37
nixos/home/vscode.nix Normal file
View file

@ -0,0 +1,37 @@
{ pkgs, ... }: {
programs.vscode = {
enable = true;
package = pkgs.vscodium;
enableUpdateCheck = false;
enableExtensionUpdateCheck = false;
extensions = with pkgs.vscode-extensions; [
catppuccin.catppuccin-vsc
catppuccin.catppuccin-vsc-icons
editorconfig.editorconfig
esbenp.prettier-vscode
jnoortheen.nix-ide
llvm-vs-code-extensions.vscode-clangd
mesonbuild.mesonbuild
rust-lang.rust-analyzer
skellock.just
wakatime.vscode-wakatime
];
userSettings = {
"editor.fontFamily" = "'Fira Code Light', monospace";
# "editor.fontLigatures" = true;
"editor.formatOnSave" = false;
"editor.indentSize" = 4;
"editor.tabSize" = 4;
"explorer.confirmDelete" = false;
"explorer.confirmDragAndDrop" = false;
"mesonbuild.buildFolder" = "build";
"prettier.tabWidth" = 4;
"prettier.trailingComma" = "none";
"prettier.singleAttributePerLine" = false;
"prettier.useEditorConfig" = true;
"telemetry.telemetryLevel" = "off";
"workbench.colorTheme" = "Catppuccin Frappé";
"workbench.iconTheme" = "catppuccin-frappe";
};
};
}