mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
add catppuccin
This commit is contained in:
parent
be765a7cf5
commit
834d39ff97
5 changed files with 30 additions and 8 deletions
|
@ -43,6 +43,11 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
catppuccin = {
|
||||||
|
url = "github:catppuccin/nix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
hyprland.url = "github:hyprwm/Hyprland";
|
hyprland.url = "github:hyprwm/Hyprland";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../modules/nixos/games/default.nix
|
../../modules/nixos/default.nix
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -180,7 +180,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
gnome-tweaks # TODO remove
|
|
||||||
btrfs-progs
|
btrfs-progs
|
||||||
hyprcursor
|
hyprcursor
|
||||||
grimblast
|
grimblast
|
||||||
|
|
9
modules/nixos/catppuccin.nix
Normal file
9
modules/nixos/catppuccin.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ inputs, ... }:
|
||||||
|
{
|
||||||
|
imports = [ inputs.catppuccin.nixosModules.catppuccin ];
|
||||||
|
|
||||||
|
config.catppuccin = {
|
||||||
|
enable = true;
|
||||||
|
flavor = "mocha";
|
||||||
|
};
|
||||||
|
}
|
6
modules/nixos/default.nix
Normal file
6
modules/nixos/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./catppuccin.nix
|
||||||
|
./games/default.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -5,6 +5,7 @@
|
||||||
prismlauncher
|
prismlauncher
|
||||||
osu-lazer-bin
|
osu-lazer-bin
|
||||||
obs-studio
|
obs-studio
|
||||||
|
davinci-resolve
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
@ -16,10 +17,12 @@
|
||||||
gamemode.enable = true;
|
gamemode.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware.opentabletdriver.enable = true;
|
hardware = {
|
||||||
hardware.graphics = {
|
amdgpu.opencl.enable = true; # For davinci-resolve
|
||||||
enable = true;
|
opentabletdriver.enable = true;
|
||||||
enable32Bit = true;
|
graphics = {
|
||||||
|
enable = true;
|
||||||
|
enable32Bit = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue