This commit is contained in:
2025-02-04 14:27:15 -05:00
parent 6815ec12ce
commit 42cd641f30
20 changed files with 362 additions and 488 deletions

View File

@@ -2,15 +2,12 @@
pkgs,
lib,
inputs,
optimizeWithFlags,
...
}:
{
imports = [
./no-gui.nix
./progs/alacritty.nix
# gpt4all broken https://github.com/NixOS/nixpkgs/pull/346185
./progs/gpt4all/gpt4all.nix
./progs/trezor.nix
];
@@ -114,31 +111,31 @@
savvycan
# nerdfonts
# simple screen recording on wayland
wl-screenrec
gimp
]
++ (builtins.filter lib.isDerivation (builtins.attrValues nerd-fonts));
programs.zed-editor = {
enable = true;
userSettings = {
ui_font_size = 16;
buffer_font_size = 16;
theme = {
mode = "system";
light = "Gruvbox Dark Hard";
dark = "One Dark";
};
};
extensions = [
"nix"
"sql"
"CSV"
"assembly"
];
};
# programs.zed-editor = {
# enable = true;
# userSettings = {
# ui_font_size = 16;
# buffer_font_size = 16;
# theme = {
# mode = "system";
# light = "Gruvbox Dark Hard";
# dark = "One Dark";
# };
# };
# extensions = [
# "nix"
# "sql"
# "CSV"
# "assembly"
# ];
# };
# make chromium-based stuff use wayland
home.file.".config/chromium-flags.conf".text = "--ozone-platform-hint=auto";