This commit is contained in:
2025-05-15 21:11:30 +03:00
commit b6cee5e832
43 changed files with 2652 additions and 0 deletions
+83
View File
@@ -0,0 +1,83 @@
{ inputs, ... }@flakeContext:
{
config,
pkgs,
...
}:
let
unstable = import inputs.nixpkgs-unstable { system = "x86_64-linux"; };
last-stable = import inputs.nixpkgs-last-unstable { system = "x86_64-linux"; };
stable = import inputs.nixpkgs-stable { system = "x86_64-linux"; };
in
{
programs = {
fastfetch.enable = true;
btop.enable = true;
mangohud.enable = true;
keepassxc.enable = true;
zed-editor = {
enable = true;
extensions = [
"nix"
];
userSettings = {
"telemetry" = {
"diagnostics" = false;
"metrics" = false;
};
"ui_font_size" = 20;
"buffer_font_size" = 26;
"theme" = {
"mode" = "system";
"light" = "Ayu Light";
"dark" = "Ayu Dark";
};
};
};
};
services = {
kdeconnect.enable = true;
easyeffects.enable = true;
};
home = {
packages = with pkgs; [
# Surfing
(brave.override {
commandLineArgs = [
"--password-store=basic" # on purpose to make it break "--password-store=gnome-libsecret"
];
})
nekoray
# Workflow
_64gram
discord
gramps
kdePackages.filelight
libreoffice-qt6
localsend
lollypop
obsidian
pdfarranger
stretchly
transmission_4-gtk
vlc
#zerotierone
#tg
#reaper
# Games
ludusavi
prismlauncher
lutris
# Libs
libsecret
# Display
#edid-decode
#displaycal
#argyllcms
];
};
}