Compare commits
5 Commits
78975da970
...
52fe355b0a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
52fe355b0a | ||
|
|
29a917ed37 | ||
|
|
7655e7b3bd | ||
|
|
858a8b77ec | ||
|
|
ba199f9568 |
@@ -47,6 +47,13 @@
|
|||||||
read-only = true;
|
read-only = true;
|
||||||
type = "ics";
|
type = "ics";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "Worlds";
|
||||||
|
url = "https://zlypher.github.io/lol-events/cal/league-of-legends-world-championship.ical";
|
||||||
|
color = "#7b99a6";
|
||||||
|
read-only = true;
|
||||||
|
type = "ics";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "Feiertage Hessen";
|
name = "Feiertage Hessen";
|
||||||
url = "https://ics.tools/Feiertage/hessen.ics";
|
url = "https://ics.tools/Feiertage/hessen.ics";
|
||||||
@@ -54,13 +61,6 @@
|
|||||||
read-only = true;
|
read-only = true;
|
||||||
type = "ics";
|
type = "ics";
|
||||||
}
|
}
|
||||||
# {
|
|
||||||
# name = "Handball Männer";
|
|
||||||
# url = "http://i.cal.to/ical/108/dhb/handball-nationalmannschaft/c687e97f.bc7c3eb6-11a0e356.ics";
|
|
||||||
# color = "#880023";
|
|
||||||
# read-only = true;
|
|
||||||
# type = "ics";
|
|
||||||
# }
|
|
||||||
];
|
];
|
||||||
default_set = {
|
default_set = {
|
||||||
# name =
|
# name =
|
||||||
|
|||||||
@@ -25,6 +25,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
'';
|
'';
|
||||||
|
rgb = rice.lib.hex-to-rgb-comma-string;
|
||||||
|
s = builtins.toString;
|
||||||
in /* html */ ''
|
in /* html */ ''
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<head>
|
<head>
|
||||||
@@ -38,27 +40,26 @@
|
|||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
html {
|
html {
|
||||||
background: rgba(${rice.lib.hex-to-rgb-comma-string background},${builtins.toString rice.transparency});
|
background: transparent;
|
||||||
padding: auto;
|
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
font-family: ${rice.font.base.name};
|
font-family: ${rice.font.base.name};
|
||||||
color: ${foreground};
|
color: ${foreground};
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
margin: 10px auto 10px auto;
|
margin: 10px auto 10px auto;
|
||||||
background: rgba(${rice.lib.hex-to-rgb-comma-string background},${builtins.toString rice.transparency});
|
background: rgba(${rgb background},${s rice.transparency});
|
||||||
border: ${builtins.toString rice.border-width}px solid ${border};
|
border: ${s rice.border-width}px solid ${border};
|
||||||
border-radius: ${builtins.toString rice.rounding}px;
|
border-radius: ${s rice.rounding}px;
|
||||||
padding: ${builtins.toString rice.gap-size}px;
|
padding: ${s rice.gap-size}px;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
margin: ${builtins.toString rice.gap-size}px;
|
margin: ${s rice.gap-size}px;
|
||||||
}
|
}
|
||||||
.color-container {
|
.color-container {
|
||||||
font-family: ${rice.font.code.name};
|
font-family: ${rice.font.code.name};
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: ${builtins.toString rice.gap-size}px;
|
gap: ${s rice.gap-size}px;
|
||||||
margin: ${builtins.toString rice.gap-size}px;
|
margin: ${s rice.gap-size}px;
|
||||||
}
|
}
|
||||||
.color-box {
|
.color-box {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
@@ -66,7 +67,7 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-radius: ${builtins.toString rice.rounding}px;
|
border-radius: ${s rice.rounding}px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -436,8 +436,8 @@
|
|||||||
fg = black.bright;
|
fg = black.bright;
|
||||||
};
|
};
|
||||||
"ui.virtual.inlay-hint" = {
|
"ui.virtual.inlay-hint" = {
|
||||||
fg = background;
|
fg = subtle.base;
|
||||||
bg = tertiary.dark;
|
bg = subtle.dark;
|
||||||
};
|
};
|
||||||
"ui.virtual.ruler" = {
|
"ui.virtual.ruler" = {
|
||||||
bg = background;
|
bg = background;
|
||||||
|
|||||||
12
home-modules/programming.nix
Normal file
12
home-modules/programming.nix
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./programming/c.nix
|
||||||
|
./programming/gleam.nix
|
||||||
|
./programming/glsl.nix
|
||||||
|
./programming/go.nix
|
||||||
|
./programming/java.nix
|
||||||
|
./programming/js.nix
|
||||||
|
./programming/python.nix
|
||||||
|
./programming/rust.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
11
home-modules/programming/rust.nix
Normal file
11
home-modules/programming/rust.nix
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{ pkgs, ... }@all: with all; {
|
||||||
|
home = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
cargo
|
||||||
|
clippy
|
||||||
|
rustc
|
||||||
|
rustfmt
|
||||||
|
rust-analyzer
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -17,6 +17,7 @@
|
|||||||
identityFile = [
|
identityFile = [
|
||||||
"${hyper.home}/vault/ssh/nxgit-nx2-${hyper.host}"
|
"${hyper.home}/vault/ssh/nxgit-nx2-${hyper.host}"
|
||||||
"${hyper.home}/vault/ssh/github-noggynoggy-${hyper.host}"
|
"${hyper.home}/vault/ssh/github-noggynoggy-${hyper.host}"
|
||||||
|
"${hyper.home}/vault/ssh/tg-dm-informatik-tuda"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"nxace" = nxace "nxace";
|
"nxace" = nxace "nxace";
|
||||||
|
|||||||
8
home.nix
8
home.nix
@@ -42,13 +42,7 @@
|
|||||||
./home-modules/pkgs-list/programs.nix
|
./home-modules/pkgs-list/programs.nix
|
||||||
./home-modules/pkgs-list/shell.nix
|
./home-modules/pkgs-list/shell.nix
|
||||||
./home-modules/pnx.nix
|
./home-modules/pnx.nix
|
||||||
./home-modules/programming/c.nix
|
./home-modules/programming.nix
|
||||||
./home-modules/programming/gleam.nix
|
|
||||||
./home-modules/programming/glsl.nix
|
|
||||||
./home-modules/programming/go.nix
|
|
||||||
./home-modules/programming/java.nix
|
|
||||||
./home-modules/programming/js.nix
|
|
||||||
./home-modules/programming/python.nix
|
|
||||||
./home-modules/qt.nix
|
./home-modules/qt.nix
|
||||||
./home-modules/rclone.nix
|
./home-modules/rclone.nix
|
||||||
./home-modules/rofi.nix
|
./home-modules/rofi.nix
|
||||||
|
|||||||
Reference in New Issue
Block a user