This commit is contained in:
Varris 2023-12-22 17:11:01 +01:00
parent 3d88dabf50
commit 9e2f88756b
5 changed files with 8 additions and 19 deletions

View File

@ -15,7 +15,6 @@
hyprland.url = "github:hyprwm/hyprland"; hyprland.url = "github:hyprwm/hyprland";
hyprland-contrib.url = "github:hyprwm/contrib"; hyprland-contrib.url = "github:hyprwm/contrib";
hyprpicker.url = "github:hyprwm/hyprpicker";
ags.url = "github:Aylur/ags"; ags.url = "github:Aylur/ags";

View File

@ -11,7 +11,7 @@
}; };
kitty = prev.kitty.overrideAttrs (old: { kitty = prev.kitty.overrideAttrs (old: {
patches = [./pkgs/kitty/0011-fix-test_fish_integration.patch]; patches = old.patches ++ [./pkgs/kitty/0011-fix-test_fish_integration.patch];
}); });
steam = prev.steam.override { steam = prev.steam.override {

View File

@ -8,7 +8,6 @@ vim.o.smartindent = true
vim.o.background = "dark" vim.o.background = "dark"
vim.o.clipboard = "unnamedplus" vim.o.clipboard = "unnamedplus"
-- vim.o.mouse = ""
vim.o.termguicolors = true vim.o.termguicolors = true
vim.o.ignorecase = true vim.o.ignorecase = true
vim.o.smartcase = true vim.o.smartcase = true

View File

@ -8,7 +8,6 @@
imports = [ imports = [
./settings.nix ./settings.nix
../ags ../ags
../wob
]; ];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
@ -29,5 +28,11 @@
Exec=swww img "%f" && ln -sf "%f" ~/.cache/swww/wallpaper Exec=swww img "%f" && ln -sf "%f" ~/.cache/swww/wallpaper
''; '';
home.packages = [pkgs.wl-clipboard pkgs.wl-clipboard-x11 pkgs.swww inputs.hyprland-contrib.packages.${system}.hyprprop]; home.packages = [
inputs.hyprland-contrib.packages.${system}.hyprprop
pkgs.hyprpicker
pkgs.swww
pkgs.wl-clipboard
pkgs.wl-clipboard-x11
];
} }

View File

@ -1,14 +0,0 @@
{lib, ...}: {
xdg.configFile."wob/wob.ini".text = lib.generators.toINIWithGlobalSection {} {
globalSection = {
height = "40";
border_size = "2";
border_color = "282828FF";
background_color = "282828FF";
bar_color = "665C54FF";
};
sections = {};
};
}