Compare commits

...

3 Commits

Author SHA1 Message Date
24f013c765
refactor: move utils to a separate file 2025-04-18 02:52:44 +03:00
a84a509cf8
pkgs: add krita and gimp 2025-04-18 02:46:26 +03:00
df54654750
fix: wallpapers 2025-04-18 02:46:26 +03:00
4 changed files with 14 additions and 4 deletions

View File

@ -4,5 +4,7 @@ lib.mkIf (!host.laptop) {
home.packages = with pkgs-fixed; [ home.packages = with pkgs-fixed; [
(blender.override { cudaSupport = true; }) (blender.override { cudaSupport = true; })
aseprite aseprite
krita
gimp
]; ];
} }

View File

@ -0,0 +1,7 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
burpsuite
binwalk
exiftool
];
}

View File

@ -1,10 +1,11 @@
{ pkgs, pkgs-fixed, host, ... }: { { pkgs, pkgs-fixed, host, ... }: {
imports = [
../../modules/user/packages/cs_utils.nix
];
disabledModules = [ ../../modules/user/packages/coding.nix ]; disabledModules = [ ../../modules/user/packages/coding.nix ];
home.packages = with pkgs; [ home.packages = with pkgs; [
nautilus nautilus
burpsuite
binwalk
exiftool
python3 python3
pkgs-fixed.jetbrains.pycharm-community pkgs-fixed.jetbrains.pycharm-community
]; ];

View File

@ -2,7 +2,7 @@
stylix = { stylix = {
enable = true; enable = true;
targets = { targets = {
hyprland.enable = true; hyprpaper.enable = lib.mkForce false;
waybar.enable = false; waybar.enable = false;
kitty.variant256Colors = true; kitty.variant256Colors = true;
}; };