mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-07 09:52:50 +00:00
~
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
parent
00dea0e846
commit
0c5c03049b
6 changed files with 43 additions and 21 deletions
1
TODO
1
TODO
|
@ -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?)
|
+- [ ] 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 :(
|
[ ] alvr doesnt work :(
|
||||||
[ ] Using clangd and gcc ??? Also clang-tools is atrociously big
|
[ ] 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] Get PulseAudio sound controls on polybar to work
|
||||||
[x] Add desktop switching to windows (context menu?)
|
[x] Add desktop switching to windows (context menu?)
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, inputs, ... }:
|
{ pkgs, inputs, ... }: {
|
||||||
{
|
|
||||||
nixpkgs.overlays = import ../overlays.nix inputs;
|
nixpkgs.overlays = import ../overlays.nix inputs;
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
@ -42,19 +41,6 @@
|
||||||
font = "Fira Code Light 11";
|
font = "Fira Code Light 11";
|
||||||
terminal = "kitty";
|
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 = {
|
services = {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ ... }:
|
{ ... }: {
|
||||||
{
|
|
||||||
dconf.settings = {
|
dconf.settings = {
|
||||||
"io/elementary/code/settings" = {
|
"io/elementary/code/settings" = {
|
||||||
font = "Fira Code Light 10";
|
font = "Fira Code Light 10";
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ ... }:
|
{ ... }: {
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
./base.nix
|
./base.nix
|
||||||
|
|
||||||
|
@ -7,6 +6,7 @@
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./polybar.nix
|
./polybar.nix
|
||||||
|
./vscode.nix
|
||||||
./yambar.nix
|
./yambar.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ ... }:
|
{ ... }: {
|
||||||
{
|
|
||||||
services.polybar = {
|
services.polybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
script = "polybar &";
|
script = "polybar &";
|
||||||
|
|
37
nixos/home/vscode.nix
Normal file
37
nixos/home/vscode.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue