Compare commits
No commits in common. "7505ddccb346951565698e88605801902754206f" and "6c14f4d0aa42cc59961afa1e0173706ec0c457c1" have entirely different histories.
7505ddccb3
...
6c14f4d0aa
4 changed files with 8 additions and 43 deletions
|
|
@ -1,23 +0,0 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
home-manager = {
|
|
||||||
users.toast.programs.bat = {
|
|
||||||
enable = true;
|
|
||||||
config = {
|
|
||||||
theme = "catppuccin-mocha";
|
|
||||||
};
|
|
||||||
themes = {
|
|
||||||
catppuccin-mocha = {
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "catppuccin";
|
|
||||||
repo = "bat";
|
|
||||||
rev = "master";
|
|
||||||
hash = "sha256-6WVKQErGdaqb++oaXnY3i6/GuH2FhTgK0v4TN4Y0Wbw=";
|
|
||||||
};
|
|
||||||
file = "Catppuccin-mocha.tmTheme";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -11,12 +11,10 @@
|
||||||
./bash.nix
|
./bash.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./bat.nix
|
|
||||||
];
|
];
|
||||||
# Some programs dont have a programs.*.enable option, so I install their package here
|
# Some programs dont have a programs.*.enable option, so I install their package here
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
speedtest-cli
|
speedtest-cli
|
||||||
# Bat has a home manager module, but I want it to be available system wide
|
|
||||||
bat
|
bat
|
||||||
file
|
file
|
||||||
nvd
|
nvd
|
||||||
|
|
|
||||||
|
|
@ -142,12 +142,9 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
configFile = {
|
configFile = {
|
||||||
"kwinrc" = {
|
"kwinrc"."Desktops" = {
|
||||||
"Desktops" = {
|
"Number" = 2;
|
||||||
"Number" = 2;
|
"Rows" = 1;
|
||||||
"Rows" = 1;
|
|
||||||
};
|
|
||||||
"TabBox"."LayoutName" = "thumbnail_grid";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,15 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
with pkgs;
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = with jetbrains; [
|
environment.systemPackages = with pkgs; with jetbrains; [
|
||||||
idea-ultimate
|
idea-ultimate
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users.toast = {
|
home-manager.users.toast = {
|
||||||
# Install plugins
|
# Install plugins
|
||||||
home.file = {
|
home.file.".local/share/JetBrains/IntelliJIdea2023.2/catppuccin.jar".source = builtins.fetchurl {
|
||||||
".local/share/JetBrains/IntelliJIdea2023.2/catppuccin.jar".source = fetchurl {
|
url = "https://github.com/catppuccin/jetbrains/releases/download/v2.2.0/Catppuccin.Theme-2.2.0.jar";
|
||||||
url = "https://github.com/catppuccin/jetbrains/releases/download/v3.0.0/Catppuccin.Theme-3.0.0.jar";
|
sha256 = "143jrhdfg7q24mnnzgqwgxq4glsxznxc6awcifpghr9q6nw1hfi0";
|
||||||
hash = "sha256-tbcUtqA8wo9ZLjfkziRZiDTN748qWQ26A80pIJrTYuM";
|
|
||||||
};
|
|
||||||
".local/share/JetBrains/IntelliJIdea2023.2/rainbow-brackets".source = fetchzip {
|
|
||||||
url = "https://github.com/izhangzhihao/intellij-rainbow-brackets/releases/download/2023.3.6/intellij-rainbow-brackets-2023.3.6.zip";
|
|
||||||
hash = "sha256-ZoBVRPZZn8QjXSLtskRtSpGoadc8KNKxsKvdcyNXT74";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue