add catppuccin

This commit is contained in:
blahai 2024-10-13 20:04:01 +03:00
parent be765a7cf5
commit 834d39ff97
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
5 changed files with 30 additions and 8 deletions

View file

@ -43,6 +43,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
catppuccin = {
url = "github:catppuccin/nix";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland.url = "github:hyprwm/Hyprland";
};

View file

@ -4,7 +4,7 @@
imports =
[
./hardware-configuration.nix
../../modules/nixos/games/default.nix
../../modules/nixos/default.nix
inputs.home-manager.nixosModules.default
];
@ -180,7 +180,6 @@
};
environment.systemPackages = with pkgs; [
gnome-tweaks # TODO remove
btrfs-progs
hyprcursor
grimblast

View file

@ -0,0 +1,9 @@
{ inputs, ... }:
{
imports = [ inputs.catppuccin.nixosModules.catppuccin ];
config.catppuccin = {
enable = true;
flavor = "mocha";
};
}

View file

@ -0,0 +1,6 @@
{
imports = [
./catppuccin.nix
./games/default.nix
];
}

View file

@ -5,6 +5,7 @@
prismlauncher
osu-lazer-bin
obs-studio
davinci-resolve
];
programs = {
@ -16,10 +17,12 @@
gamemode.enable = true;
};
hardware.opentabletdriver.enable = true;
hardware.graphics = {
hardware = {
amdgpu.opencl.enable = true; # For davinci-resolve
opentabletdriver.enable = true;
graphics = {
enable = true;
enable32Bit = true;
};
};
}