Merge branch 'nixos' into nixos-work
This commit is contained in:
commit
85d28fcbb8
7 changed files with 12 additions and 7 deletions
|
|
@ -5,7 +5,7 @@ let
|
|||
cfg = config.my.theming;
|
||||
in
|
||||
{
|
||||
config = mkIf (cfg.scheme == "catppuccin-frappe")
|
||||
config = mkIf (cfg.enable && cfg.scheme == "catppuccin-frappe")
|
||||
(import ./catppuccin.nix
|
||||
{
|
||||
inherit config lib pkgs;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ let
|
|||
cfg = config.my.theming;
|
||||
in
|
||||
{
|
||||
config = mkIf (cfg.scheme == "catppuccin-latte")
|
||||
config = mkIf (cfg.enable && cfg.scheme == "catppuccin-latte")
|
||||
(import ./catppuccin.nix
|
||||
{
|
||||
inherit config lib pkgs;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ let
|
|||
cfg = config.my.theming;
|
||||
in
|
||||
{
|
||||
config = mkIf (cfg.scheme == "catppuccin-macchiato")
|
||||
config = mkIf (cfg.enable && cfg.scheme == "catppuccin-macchiato")
|
||||
(import ./catppuccin.nix
|
||||
{
|
||||
inherit config lib pkgs;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ let
|
|||
cfg = config.my.theming;
|
||||
in
|
||||
{
|
||||
config = mkIf (cfg.scheme == "catppuccin-mocha")
|
||||
config = mkIf (cfg.enable && cfg.scheme == "catppuccin-mocha")
|
||||
(import ./catppuccin.nix
|
||||
{
|
||||
inherit config lib pkgs;
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ let
|
|||
yellow = "#f1fa8c";
|
||||
in
|
||||
{
|
||||
config = mkIf (cfg.scheme == "dracula") {
|
||||
config = mkIf (cfg.enable && cfg.scheme == "dracula") {
|
||||
home-manager.users.moritz = {
|
||||
programs = {
|
||||
kitty.extraConfig =
|
||||
|
|
|
|||
|
|
@ -7,6 +7,11 @@ with lib; {
|
|||
my = {
|
||||
# config
|
||||
yubikey.enable = true;
|
||||
theming = {
|
||||
enable = true;
|
||||
scheme = "catppuccin-macchiato";
|
||||
};
|
||||
wallpapers.enable = true;
|
||||
|
||||
virtualisation = {
|
||||
podman.enable = true;
|
||||
|
|
@ -17,7 +22,7 @@ with lib; {
|
|||
code.enable = true;
|
||||
firefox.enable = true;
|
||||
git.identity.email = "moritz.boehme@l.de";
|
||||
gnome.enable = true;
|
||||
hyprland.enable = true;
|
||||
python.versions = {
|
||||
"38".enable = true;
|
||||
"310".enable = true;
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ in
|
|||
"feh".state = "floating";
|
||||
"Vampire_Survivors".state = "fullscreen";
|
||||
};
|
||||
settings = with config.scheme.withHashtag; {
|
||||
settings = {
|
||||
border_width = 2;
|
||||
window_gap = 5;
|
||||
borderless_monocle = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue