mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
further configuration
This commit is contained in:
parent
b8efb1ffed
commit
8def55e01e
5 changed files with 50 additions and 43 deletions
|
@ -25,20 +25,6 @@
|
|||
text = "CellBackground";
|
||||
cursor = "CellForeground";
|
||||
};
|
||||
#search = {
|
||||
#matches = {
|
||||
#foreground = "#44475a";
|
||||
#background = "#50fa7b";
|
||||
#};
|
||||
#focused_match = {
|
||||
#foreground = "#44475a";
|
||||
#background = "#ffb86c";
|
||||
#};
|
||||
#footer_bar = {
|
||||
#background = "#282a36";
|
||||
#foreground = "#f8f8f2";
|
||||
#};
|
||||
#};
|
||||
selection = {
|
||||
text = "CellForeground";
|
||||
background = "#${config.colorScheme.colors.base03}";
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, hyprpaper, ... }:
|
||||
{
|
||||
wayland.windowManager.hyprland.enable = true;
|
||||
xdg.configFile."hypr/hyprland.conf".source = ./hyprland.conf;
|
||||
xdg.configFile."hypr/hyprpaper.conf".text = ''
|
||||
preload = ${../../../../images/wallpaper.png}
|
||||
wallpaper =, ${../../../../images/wallpaper.png}
|
||||
'';
|
||||
# TODO integrate this to nix-colors
|
||||
xdg.configFile."wofi".source = ./wofi-config;
|
||||
home.packages = with pkgs; [
|
||||
wofi
|
||||
#noto-fonts-emoji
|
||||
home.packages = [
|
||||
pkgs.wofi
|
||||
hyprpaper.packages.x86_64-linux.default
|
||||
];
|
||||
|
||||
programs.waybar = {
|
||||
|
@ -18,4 +22,9 @@
|
|||
#};
|
||||
#};
|
||||
};
|
||||
|
||||
programs.mako = {
|
||||
enable = true;
|
||||
backgroundColor = "#${config.colorScheme.colors.base00}FF";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ monitor=eDP-1, 1920x1080, 0x0, 1
|
|||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||
|
||||
# Execute your favorite apps at launch
|
||||
exec-once = waybar
|
||||
exec-once = waybar & hyprpaper
|
||||
|
||||
# Source a file (multi-file configs)
|
||||
# source = ~/.config/hypr/myColors.conf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue