Compare commits

...

2 commits

4 changed files with 62 additions and 50 deletions

View file

@ -2,6 +2,8 @@ what is currently not working:
- gdm thinks i tried to login when pressing on the user - gdm thinks i tried to login when pressing on the user
what i want to do: what i want to do:
- split up configs well
- learn flakes - learn flakes
- give more stuff over to home-manager
# Docs
Since I use my laptop with one user, I symlinked the configs to my home directory following the tutorial [here](https://nixos.wiki/wiki/NixOS_configuration_editors)

View file

@ -32,7 +32,6 @@ exec-once = squeekboard
exec-once = $menu exec-once = $menu
exec-once = hyprpaper exec-once = hyprpaper
exec-once = $HYPR_PATH/lose-focus.sh
# after boot, there are 2 bars for some reason, so I kill them and rerun the command # after boot, there are 2 bars for some reason, so I kill them and rerun the command
exec-once = bash -c "killall -r -0 waybar && killall -r waybar; waybar" exec-once = bash -c "killall -r -0 waybar && killall -r waybar; waybar"
@ -60,7 +59,7 @@ input {
follow_mouse = 1 follow_mouse = 1
touchpad { touchpad {
natural_scroll = no natural_scroll = yes
} }
sensitivity = 0 # -1.0 - 1.0, 0 means no modification. sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
@ -155,10 +154,6 @@ windowrule = float,title:^(Open File)$
windowrule = pin,^(nm-tray)$ windowrule = pin,^(nm-tray)$
#windowrule = move cursor 0 -35,^(nm-tray)$ #windowrule = move cursor 0 -35,^(nm-tray)$
windowrule = float,^(.blueman-manager-wrapped)$
windowrule = move cursor 0 0,^(.blueman-manager-wrapped)$
windowrule = size 400 581,^(.blueman-manager-wrapped)$
# See https://wiki.hyprland.org/Configuring/Keywords/ for more # See https://wiki.hyprland.org/Configuring/Keywords/ for more
$mainMod = SUPER $mainMod = SUPER

View file

@ -5,48 +5,57 @@ let
in in
{ {
programs.eww = { programs = {
enable = true; fzf = {
configDir = "${configDir}/eww"; # see hyprland.nix for scripts path enable = true;
package = enableBashIntegration = true;
(builtins.getFlake "github:matt1432/eww-exclusiver").packages.x86_64-linux.default; #colors = {
}; # not working ?
#};
};
programs.alacritty = { eww = {
enable = true; enable = true;
settings = { configDir = "${configDir}/eww"; # see hyprland.nix for scripts path
env = { package = (builtins.getFlake "github:matt1432/eww-exclusiver").packages.x86_64-linux.default;
POKE = "true"; };
};
window = { alacritty = {
padding = { enable = true;
x = 0; settings = {
y = 10; env = {
POKE = "true";
}; };
opacity = 0.8; window = {
}; padding = {
x = 0;
y = 10;
};
colors = { opacity = 0.8;
primary = {
background = "0x0c0c0c";
foreground = "0xfcfcfc";
dim_foreground = "0xeff0f1";
bright_foreground = "0xffffff";
dim_background = "0x31363b";
bright_background = "0x000000";
}; };
normal = {
black = "0x232627"; colors = {
red = "0xed1515"; primary = {
green = "0x11d116"; background = "0x0c0c0c";
yellow = "0xf67400"; foreground = "0xfcfcfc";
blue = "0x1d99f3";
magenta = "0x9b59b6"; dim_foreground = "0xeff0f1";
cyan = "0x1abc9c"; bright_foreground = "0xffffff";
white = "0xfcfcfc"; dim_background = "0x31363b";
bright_background = "0x000000";
};
normal = {
black = "0x232627";
red = "0xed1515";
green = "0x11d116";
yellow = "0xf67400";
blue = "0x1d99f3";
magenta = "0x9b59b6";
cyan = "0x1abc9c";
white = "0xfcfcfc";
};
}; };
}; };
}; };

View file

@ -1,13 +1,19 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
programs.waybar = { programs = {
enable = true; btop = {
package = pkgs.waybar.overrideAttrs (oldAttrs: { enable = true;
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ]; };
});
waybar = {
enable = true;
package = pkgs.waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
});
};
}; };
home.packages = with pkgs; home.packages = with pkgs;
(with xorg; [ (with xorg; [
xcursorthemes xcursorthemes