Add dotfiles

This commit is contained in:
muon 2024-03-26 11:39:16 +00:00
commit 39fe550b3e
45 changed files with 4363 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{
config,
lib,
pkgs,
inputs,
...
}:
{
wayland.windowManager.hyprland = with lib; with pkgs; {
enable = true;
xwayland.enable = true;
nvidiaPatches = true;
recommendedEnvironment = true;
extraConfig = ''
monitor=,preferred,auto,1
input {
kb_layout = us
kb_variant =
kb_model =
kb_options = caps:escape
kb_rules =
follow_mouse = 1
touchpad {
natural_scroll = false
}
sensitivity = 0 # -1.0 - 1.0
}
bind = SUPER, Return, exec, ${getExe alacritty}
bind = SUPER, b, exec, ${getExe chromium}
'';
};
home.pointerCursor = {
name = "Adwaita";
package = pkgs.gnome.adwaita-icon-theme;
size = 24;
x11 = {
enable = true;
defaultCursor = "Adwaita";
};
};
}