format everything

This commit is contained in:
Noa Aarts 2024-06-04 12:18:23 +02:00
parent 9c28397d38
commit b54f3d54f1
37 changed files with 1185 additions and 1173 deletions

View file

@ -1,47 +1,47 @@
{ config, pkgs, nix-colors, ... }:
{
imports = [
nix-colors.homeManagerModules.default
];
imports = [
nix-colors.homeManagerModules.default
];
# colorScheme = nix-colors.colorSchemes.catppuccin-macchiato;
# colorScheme = nix-colors.colorSchemes.catppuccin-macchiato;
colorScheme = {
slug = "test";
name = "TestScheme";
author = "Noa";
palette = {
base00 = "#000000";
base01 = "#0000FF";
base02 = "#00FF00";
base03 = "#00FFFF";
base04 = "#FF0000";
base05 = "#FF00FF";
base06 = "#FFFF00";
base07 = "#FFFFFF";
base08 = "#777777";
base09 = "#7777FF";
base0A = "#77FF77";
base0B = "#77FFFF";
base0C = "#FF7777";
base0D = "#FF77FF";
base0E = "#FFFF77";
base0F = "#AAAAAA";
text = "#222222";
textInverted = "#DDDDDD";
textMuted = "#DDDDDD";
background = "#FFD2D2";
backgroundMuted = "#CCCCCC";
warn = "#FF0000";
highlight = "#FBAF44";
danger = "#F53C3C";
succes = "#5BBD63";
spotifyGreen = "#39A04A";
border = "#5F5F5F";
info = "#2CB6AF";
ok = "#38B148";
};
};
colorScheme = {
slug = "test";
name = "TestScheme";
author = "Noa";
palette = {
base00 = "#000000";
base01 = "#0000FF";
base02 = "#00FF00";
base03 = "#00FFFF";
base04 = "#FF0000";
base05 = "#FF00FF";
base06 = "#FFFF00";
base07 = "#FFFFFF";
base08 = "#777777";
base09 = "#7777FF";
base0A = "#77FF77";
base0B = "#77FFFF";
base0C = "#FF7777";
base0D = "#FF77FF";
base0E = "#FFFF77";
base0F = "#AAAAAA";
text = "#222222";
textInverted = "#DDDDDD";
textMuted = "#DDDDDD";
background = "#FFD2D2";
backgroundMuted = "#CCCCCC";
warn = "#FF0000";
highlight = "#FBAF44";
danger = "#F53C3C";
succes = "#5BBD63";
spotifyGreen = "#39A04A";
border = "#5F5F5F";
info = "#2CB6AF";
ok = "#38B148";
};
};
}

View file

@ -1,22 +1,22 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# (symlinkJoin {
# name = "discord";
# paths = [
# (writeShellScriptBin "discord" ''${discord}/bin/discord --enable-features=UseOzonePlatform --ozone-platform=wayland'')
# (writeShellScriptBin "Discord" ''${discord}/bin/Discord --enable-features=UseOzonePlatform --ozone-platform=wayland'')
# discord
# ];
# })
(symlinkJoin {
name = "vesktop";
paths = [
(writeShellScriptBin "vesktop" ''${vesktop}/bin/vesktop --enable-features=UseOzonePlatform --ozone-platform=wayland'')
(writeShellScriptBin "Vesktop" ''${vesktop}/bin/Vesktop --enable-features=UseOzonePlatform --ozone-platform=wayland'')
vesktop
];
})
];
home.packages = with pkgs; [
# (symlinkJoin {
# name = "discord";
# paths = [
# (writeShellScriptBin "discord" ''${discord}/bin/discord --enable-features=UseOzonePlatform --ozone-platform=wayland'')
# (writeShellScriptBin "Discord" ''${discord}/bin/Discord --enable-features=UseOzonePlatform --ozone-platform=wayland'')
# discord
# ];
# })
(symlinkJoin {
name = "vesktop";
paths = [
(writeShellScriptBin "vesktop" ''${vesktop}/bin/vesktop --enable-features=UseOzonePlatform --ozone-platform=wayland'')
(writeShellScriptBin "Vesktop" ''${vesktop}/bin/Vesktop --enable-features=UseOzonePlatform --ozone-platform=wayland'')
vesktop
];
})
];
}

View file

@ -1,21 +1,21 @@
{ pkgs, lib, ... }:
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
# needed for the nvim config, neovim itself is a system package already
ripgrep
home.packages = with pkgs; [
# needed for the nvim config, neovim itself is a system package already
ripgrep
# TODO: find how I can make this build dependencies only
gnumake
rustc
python3
];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
# TODO: find how I can make this build dependencies only
gnumake
rustc
python3
];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
extraLuaConfig = lib.fileContents ./init.lua;
};
extraLuaConfig = lib.fileContents ./init.lua;
};
}

View file

@ -1,14 +1,14 @@
{ config, pkgs, inputs, ... }:
{
services.spotifyd.enable = true;
home.packages = with pkgs; [
(symlinkJoin {
name = "spotify";
paths = [
(writeShellScriptBin "spotify" ''${spotify}/bin/spotify --enable-features=UseOzonePlatform --ozone-platform=wayland'')
spotify
];
})
];
services.spotifyd.enable = true;
home.packages = with pkgs; [
(symlinkJoin {
name = "spotify";
paths = [
(writeShellScriptBin "spotify" ''${spotify}/bin/spotify --enable-features=UseOzonePlatform --ozone-platform=wayland'')
spotify
];
})
];
}