This commit is contained in:
cnst
2024-07-30 23:47:55 +02:00
parent df6ddf3644
commit 80f2d6797d
8 changed files with 141 additions and 105 deletions

23
home/core/default.nix Normal file
View File

@@ -0,0 +1,23 @@
{
imports = [
# ./gui/anyrun
./gui/browsers
./gui/discord
./gui/gtk
./gui/utility
./gui/waybar
./gui/xdg
./tui/alacritty
./tui/foot
./tui/neovim
./tui/wezterm
./tui/yazi
./services/copyq
./services/hypr
./services/mako
./services/polkit
./services/udiskie
];
}

View File

@@ -1,56 +0,0 @@
* {
all: unset;
font-size: 1.2rem;
}
#window,
#match,
#entry,
#plugin,
#main {
background: #ffffff;
}
#window {
font-size: 60px;
background-image: url("/home/cnst/.config/waybar/images/nixblueflake.svg");
background-position: center;
background-repeat: no-repeat;
background-size: 60px 60px;
}
#match.activatable {
border-radius: 8px;
margin: 4px 0;
padding: 4px;
transition: 100ms ease-out;
}
#match.activatable:first-child {
margin-top: 12px;
}
#match.activatable:last-child {
margin-bottom: 0;
}
#match:hover {
background: rgba(255, 255, 255, 0.05);
}
#match:selected {
background: rgba(255, 255, 255, 0.1);
}
#entry {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 4px 8px;
}
box#main {
background: rgba(0, 0, 0, 0.5);
box-shadow:
inset 0 0 0 1px rgba(255, 255, 255, 0.1),
0 30px 30px 15px rgba(0, 0, 0, 0.5);
border-radius: 20px;
padding: 12px;
}

View File

@@ -1,27 +1,12 @@
{pkgs, ...}: {
imports = [
# core.gui
../../core/gui/gtk
../../core/gui/waybar
# ../../core/gui/ags
../../core/gui/browsers
../../core/gui/xdg
../../core/gui/discord
../../core/gui/hypr/cnst.nix
../../core/gui/utility
# core.tui
../../core/tui/git/cnst.nix
../../core/tui/shell/cnst.nix
../../core/tui/foot
../../core/tui/alacritty
../../core/tui/wezterm
../../core/tui/neovim
../../core/tui/yazi
# core.services
../../core/services/mako
../../core/services/polkit
../../core/services/hypr
../../core/services/copyq
# ../../core/services/power-monitor
];
home = {

View File

@@ -8,14 +8,17 @@
homeImports = {
"cnst@cnix" = [
../core
../cnst.nix
./cnst
];
"adam@adampad" = [
../core
../adam.nix
./adam
];
"toothpick@toothpc" = [
../core
../toothpick.nix
./toothpick
];