Compare commits
5 commits
4a6941b8c0
...
2a82d1fceb
Author | SHA1 | Date | |
---|---|---|---|
2a82d1fceb | |||
ac1d6009d4 | |||
54ea99d44c | |||
73e6d519aa | |||
b5d2e2593e |
7 changed files with 16 additions and 161 deletions
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
|
|
|
@ -84,6 +84,7 @@
|
|||
gimp
|
||||
gparted
|
||||
idea-ultimate-fixed
|
||||
krita
|
||||
mpv
|
||||
obsidian
|
||||
strawberry
|
||||
|
|
27
flake.lock
generated
27
flake.lock
generated
|
@ -247,8 +247,7 @@
|
|||
"nixpkgs": "nixpkgs",
|
||||
"systems": "systems",
|
||||
"treefmt-nix": "treefmt-nix",
|
||||
"ukubot-rs": "ukubot-rs",
|
||||
"vscode-extensions": "vscode-extensions"
|
||||
"ukubot-rs": "ukubot-rs"
|
||||
}
|
||||
},
|
||||
"rust-overlay": {
|
||||
|
@ -329,30 +328,6 @@
|
|||
"repo": "ukubot-rs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"vscode-extensions": {
|
||||
"inputs": {
|
||||
"flake-compat": [],
|
||||
"flake-utils": [
|
||||
"flake-utils"
|
||||
],
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1739929767,
|
||||
"narHash": "sha256-4mcftoL28KCeBX+wyD37IdVGeY2MyXxigL8Jj2rzsus=",
|
||||
"owner": "nix-community",
|
||||
"repo": "nix-vscode-extensions",
|
||||
"rev": "fe953b35b591faf57660800fb6e8b74956eea846",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"repo": "nix-vscode-extensions",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
|
|
|
@ -120,13 +120,6 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
vscode-extensions = {
|
||||
url = "github:nix-community/nix-vscode-extensions";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.flake-utils.follows = "flake-utils";
|
||||
inputs.flake-compat.follows = "";
|
||||
};
|
||||
|
||||
# ==== uku3lig stuff ====
|
||||
api-rs = {
|
||||
url = "github:uku3lig/api-rs";
|
||||
|
|
|
@ -1,15 +1,14 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = [ pkgs.ghostty ];
|
||||
|
||||
hm.home.file.".config/ghostty/config".text = ''
|
||||
theme = light:catppuccin-latte,dark:catppuccin-mocha
|
||||
font-family = Iosevka Term
|
||||
font-size = 12
|
||||
font-feature = -calt
|
||||
font-feature = -dlig
|
||||
'';
|
||||
hm.programs.ghostty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
theme = "light:catppuccin-latte,dark:catppuccin-mocha";
|
||||
font-family = "Iosevka Term";
|
||||
font-size = 12;
|
||||
font-feature = [
|
||||
"-calt"
|
||||
"-dlig"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
pkgs,
|
||||
camasca,
|
||||
...
|
||||
}:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
services = {
|
||||
desktopManager.plasma6.enable = true;
|
||||
|
@ -17,7 +13,7 @@
|
|||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
gnome-calculator
|
||||
koi
|
||||
kdePackages.koi
|
||||
];
|
||||
|
||||
plasma6.excludePackages = with pkgs.kdePackages; [
|
||||
|
|
|
@ -1,108 +0,0 @@
|
|||
{
|
||||
pkgs,
|
||||
vscode-extensions,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (pkgs.stdenv.hostPlatform) system;
|
||||
extensions = vscode-extensions.extensions.${system};
|
||||
|
||||
patched = with pkgs.vscode-extensions; [
|
||||
ms-python.python
|
||||
ms-vscode.cpptools
|
||||
ms-vscode-remote.remote-ssh
|
||||
rust-lang.rust-analyzer
|
||||
wakatime.vscode-wakatime
|
||||
];
|
||||
in
|
||||
{
|
||||
hm.programs.vscode = {
|
||||
enable = true;
|
||||
enableUpdateCheck = false;
|
||||
enableExtensionUpdateCheck = false;
|
||||
mutableExtensionsDir = false;
|
||||
|
||||
extensions =
|
||||
with extensions.vscode-marketplace;
|
||||
patched
|
||||
++ [
|
||||
# style
|
||||
bierner.markdown-preview-github-styles
|
||||
catppuccin.catppuccin-vsc
|
||||
|
||||
# git
|
||||
donjayamanne.githistory
|
||||
eamodio.gitlens
|
||||
|
||||
# misc
|
||||
github.copilot
|
||||
editorconfig.editorconfig
|
||||
mkhl.direnv
|
||||
tailscale.vscode-tailscale
|
||||
usernamehw.errorlens
|
||||
|
||||
# rust
|
||||
dustypomerleau.rust-syntax
|
||||
serayuzgur.crates
|
||||
tamasfe.even-better-toml
|
||||
ms-vsliveshare.vsliveshare
|
||||
|
||||
# nix
|
||||
jnoortheen.nix-ide
|
||||
|
||||
# cpp
|
||||
mesonbuild.mesonbuild
|
||||
(ms-vscode.cmake-tools.overrideAttrs (_: {
|
||||
sourceRoot = "extension";
|
||||
}))
|
||||
(ms-vscode.makefile-tools.overrideAttrs (_: {
|
||||
sourceRoot = "extension";
|
||||
}))
|
||||
twxs.cmake
|
||||
xaver.clang-format
|
||||
|
||||
# python
|
||||
donjayamanne.python-environment-manager
|
||||
ms-python.vscode-pylance
|
||||
|
||||
# java
|
||||
redhat.java
|
||||
|
||||
# web
|
||||
astro-build.astro-vscode
|
||||
vue.volar
|
||||
esbenp.prettier-vscode
|
||||
dbaeumer.vscode-eslint
|
||||
];
|
||||
|
||||
userSettings = {
|
||||
"cmake.configureOnOpen" = true;
|
||||
"editor.fontFamily" = "'Iosevka Nerd Font', monospace";
|
||||
"editor.fontSize" = 16;
|
||||
"editor.formatOnSave" = true;
|
||||
"editor.inlineSuggest.enabled" = true;
|
||||
"files.autoSave" = "afterDelay";
|
||||
"nix.enableLanguageServer" = true;
|
||||
"nix.serverPath" = "nil";
|
||||
"rust-analyzer.check.command" = "clippy";
|
||||
"terminal.integrated.fontFamily" = "Iosevka Nerd Font";
|
||||
"workbench.colorTheme" = "Catppuccin Macchiato";
|
||||
"errorLens.messageBackgroundMode" = "message";
|
||||
"java.jdt.ls.java.home" = "${pkgs.jdk17}/lib/openjdk";
|
||||
|
||||
"editor.defaultFormatter" = "esbenp.prettier-vscode";
|
||||
"[javascript]"."editor.defaultFormatter" = "esbenp.prettier-vscode";
|
||||
"[astro]"."editor.defaultFormatter" = "astro-build.astro-vscode";
|
||||
"[rust]"."editor.defaultFormatter" = "rust-lang.rust-analyzer";
|
||||
|
||||
# fix for segfault on hyprland
|
||||
"window.titleBarStyle" = "custom";
|
||||
|
||||
"remote.SSH.useLocalServer" = false;
|
||||
"remote.SSH.remotePlatform" = {
|
||||
"etna.fossa-macaroni.ts.net" = "linux";
|
||||
"contabo.fossa-macaroni.ts.net" = "linux";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue