mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
Compare commits
No commits in common. "d578167e42ba4da58511f687c8633059668ec503" and "072efd4076d02b49aada47285a866bf32c260e9d" have entirely different histories.
d578167e42
...
072efd4076
4 changed files with 5 additions and 30 deletions
|
|
@ -36,12 +36,11 @@
|
||||||
"mpDris2 &"
|
"mpDris2 &"
|
||||||
"foot --server &"
|
"foot --server &"
|
||||||
"hyprfloat &"
|
"hyprfloat &"
|
||||||
"gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' &"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
input = {
|
input = {
|
||||||
kb_layout = "us,jp";
|
kb_layout = "us,jp";
|
||||||
kb_options = "caps:ctrl_modifier,compose:ralt";
|
kb_options = "caps:ctrl_modifier";
|
||||||
numlock_by_default = true;
|
numlock_by_default = true;
|
||||||
follow_mouse = 1;
|
follow_mouse = 1;
|
||||||
sensitivity = 0;
|
sensitivity = 0;
|
||||||
|
|
@ -172,7 +171,6 @@
|
||||||
"$mainMod, Space, togglefloating,"
|
"$mainMod, Space, togglefloating,"
|
||||||
"$mainMod, D, exec, bemenu-run -l 5 --ignorecase"
|
"$mainMod, D, exec, bemenu-run -l 5 --ignorecase"
|
||||||
"SUPER SHIFT, L, exec, swaylock --image /home/${username}/.local/share/bg.png"
|
"SUPER SHIFT, L, exec, swaylock --image /home/${username}/.local/share/bg.png"
|
||||||
"SUPER, L, exec, swaylock --image /home/${username}/.local/share/bg.png"
|
|
||||||
"$mainMod, E, exec, thunar"
|
"$mainMod, E, exec, thunar"
|
||||||
"$mainMod SHIFT, B, exec, pkill -SIGUSR1 .waybar-wrapped"
|
"$mainMod SHIFT, B, exec, pkill -SIGUSR1 .waybar-wrapped"
|
||||||
"$mainMod, C,exec, hyprpicker -a"
|
"$mainMod, C,exec, hyprpicker -a"
|
||||||
|
|
@ -271,10 +269,6 @@
|
||||||
"$mainMod, XF86MonBrightnessDown, exec, brightnessctl set 100%-"
|
"$mainMod, XF86MonBrightnessDown, exec, brightnessctl set 100%-"
|
||||||
];
|
];
|
||||||
|
|
||||||
bindl = [
|
|
||||||
",switch:[Lid Switch], exec, hyprlock"
|
|
||||||
];
|
|
||||||
|
|
||||||
# mouse binding
|
# mouse binding
|
||||||
bindm = [
|
bindm = [
|
||||||
"$mainMod, mouse:272, movewindow"
|
"$mainMod, mouse:272, movewindow"
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,9 @@
|
||||||
{ inputs, ... }:
|
{ inputs, ... }:
|
||||||
{
|
{
|
||||||
imports =
|
imports = [ (import ./hyprland.nix) ]
|
||||||
[ (import ./hyprland.nix) ]
|
|
||||||
++ [ (import ./config.nix) ]
|
++ [ (import ./config.nix) ]
|
||||||
++ [ (import ./scripts.nix) ]
|
++ [ (import ./scripts.nix) ]
|
||||||
++ [ (import ./variables.nix) ]
|
++ [ (import ./variables.nix) ]
|
||||||
++ [ (import ./../hyprsunset.nix) ]
|
# ++ [ (import ./hyprlock.nix) ]
|
||||||
++ [ (import ./../hyprlock.nix) ]
|
|
||||||
++ [ inputs.hyprland.homeManagerModules.default ];
|
++ [ inputs.hyprland.homeManagerModules.default ];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
services.hyprsunset.enable = true;
|
|
||||||
|
|
||||||
home.file.".config/hypr/hyprsunset.conf".text = ''
|
|
||||||
max-gamma = 200;
|
|
||||||
profile {
|
|
||||||
time = 06:00;
|
|
||||||
identity = true;
|
|
||||||
}
|
|
||||||
profile {
|
|
||||||
time = 21:00;
|
|
||||||
temperature = 5500;
|
|
||||||
gamma = 0.8;
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
@ -198,12 +198,11 @@ in
|
||||||
{ command = "swaycons &"; }
|
{ command = "swaycons &"; }
|
||||||
# { command = "wlsunset -S '06:30' -s '19:30' -d 1800 "; }
|
# { command = "wlsunset -S '06:30' -s '19:30' -d 1800 "; }
|
||||||
{ command = "foot --server &"; }
|
{ command = "foot --server &"; }
|
||||||
{ command = "gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'"; }
|
|
||||||
{ command = "footclient"; }
|
{ command = "footclient"; }
|
||||||
];
|
];
|
||||||
workspaceAutoBackAndForth = false;
|
workspaceAutoBackAndForth = false;
|
||||||
};
|
};
|
||||||
# systemd.enable = true; # why would anyone do this???
|
# systemd.enable = true; # ???
|
||||||
wrapperFeatures = {
|
wrapperFeatures = {
|
||||||
gtk = true;
|
gtk = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue