Init Config

This commit is contained in:
DerGrumpf
2026-04-03 23:37:52 +02:00
parent a8ec840d21
commit 62d3c12930
111 changed files with 5652 additions and 1 deletions

47
home/desktop/default.nix Normal file
View File

@@ -0,0 +1,47 @@
{ pkgs, inputs, ... }: {
imports = [ inputs.catppuccin.homeModules.catppuccin ]
++ pkgs.lib.optionals (!pkgs.stdenv.isDarwin) [
./hyprland
./rofi
./waybar
./gtk.nix
./qt.nix
] ++ pkgs.lib.optionals pkgs.stdenv.isDarwin [ ./sketchybar.nix ];
_module.args.compositor =
if pkgs.stdenv.isDarwin then "quartz" else "hyprland";
home = pkgs.lib.mkIf (!pkgs.stdenv.isDarwin) {
packages = with pkgs; [ waypaper swww ];
file.".config/waypaper/config.ini".source = ./waypaper.ini;
};
# TODO: Qutebrowser install
programs = pkgs.lib.mkIf (!pkgs.stdenv.isDarwin) {
mangohud = {
enable = true;
settings = {
position = "top-right";
offset_x = 20;
offset_y = 20;
fps = true;
cpu_stats = true;
gpu_stats = true;
cpu_temp = true;
gpu_temp = true;
ram = true;
vram = true;
background_alpha = 0.5;
};
};
# TODO: Needs config!
mpv = {
enable = true;
};
};
}