Compare commits
2 Commits
1e4d4a466d
...
18edb31aa1
| Author | SHA1 | Date | |
|---|---|---|---|
| 18edb31aa1 | |||
| a20d463a17 |
@ -48,6 +48,8 @@
|
|||||||
packages = with pkgs; [];
|
packages = with pkgs; [];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
users.defaultUserShell = pkgs.zsh;
|
||||||
|
|
||||||
services.xserver.xkb = {
|
services.xserver.xkb = {
|
||||||
layout = "fr";
|
layout = "fr";
|
||||||
variant = "";
|
variant = "";
|
||||||
@ -87,10 +89,14 @@
|
|||||||
wl-clipboard
|
wl-clipboard
|
||||||
libnotify
|
libnotify
|
||||||
hyprpaper
|
hyprpaper
|
||||||
|
font-awesome
|
||||||
|
dig
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.firefox.enable = true;
|
programs.firefox.enable = true;
|
||||||
|
|
||||||
|
programs.zsh.enable = true;
|
||||||
|
|
||||||
programs.nh = {
|
programs.nh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
clean.enable = true;
|
clean.enable = true;
|
||||||
|
|||||||
@ -33,7 +33,7 @@ bind = ,XF86AudioLowerVolume, exec, virt-manager
|
|||||||
bind = $mainMod SHIFT, B, exec, killall waybar && waybar &
|
bind = $mainMod SHIFT, B, exec, killall waybar && waybar &
|
||||||
|
|
||||||
# Hide waybar
|
# Hide waybar
|
||||||
bind = $mainMod, X, exec, killall waybar || waybar &
|
bind = $mainMod, X, exec, pkill waybar || waybar &
|
||||||
|
|
||||||
# Clipboard history
|
# Clipboard history
|
||||||
bind = $mainMod, V, exec, cliphist list | wofi -dmenu | cliphist decode | wl-copy
|
bind = $mainMod, V, exec, cliphist list | wofi -dmenu | cliphist decode | wl-copy
|
||||||
|
|||||||
@ -5,9 +5,6 @@
|
|||||||
"output": "DP-1",
|
"output": "DP-1",
|
||||||
|
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
"custom/launcher",
|
|
||||||
"custom/right-arrow-dark",
|
|
||||||
"custom/right-arrow-light",
|
|
||||||
"hyprland/workspaces",
|
"hyprland/workspaces",
|
||||||
"custom/right-arrow-dark"
|
"custom/right-arrow-dark"
|
||||||
],
|
],
|
||||||
@ -23,9 +20,6 @@
|
|||||||
"custom/right-arrow-dark"
|
"custom/right-arrow-dark"
|
||||||
],
|
],
|
||||||
"modules-right": [
|
"modules-right": [
|
||||||
"custom/left-arrow-dark",
|
|
||||||
"custom/updates",
|
|
||||||
"custom/left-arrow-light",
|
|
||||||
"custom/left-arrow-dark",
|
"custom/left-arrow-dark",
|
||||||
"cpu",
|
"cpu",
|
||||||
"custom/left-arrow-light",
|
"custom/left-arrow-light",
|
||||||
@ -111,18 +105,8 @@
|
|||||||
"tray": {
|
"tray": {
|
||||||
"icon-size": 20
|
"icon-size": 20
|
||||||
},
|
},
|
||||||
"custom/launcher":{
|
|
||||||
"format": " ",
|
|
||||||
"on-click": "wofi --show drun",
|
|
||||||
"on-click-right": "killall wofi"
|
|
||||||
},
|
|
||||||
"custom/power":{
|
"custom/power":{
|
||||||
"format": " ",
|
"format": " ",
|
||||||
"on-click": "wlogout"
|
"on-click": "wlogout"
|
||||||
},
|
|
||||||
"custom/updates":{
|
|
||||||
"format": " {} Update(s) ",
|
|
||||||
"exec": "checkupdates | wc -l",
|
|
||||||
"interval": 1800
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,15 +18,10 @@ window#waybar {
|
|||||||
background: #1a1a1a;
|
background: #1a1a1a;
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-updates {
|
|
||||||
color: #F3881F;
|
|
||||||
background: #1a1a1a;
|
|
||||||
}
|
|
||||||
#custom-power {
|
#custom-power {
|
||||||
color: #ff8080;
|
color: #ff8080;
|
||||||
background: #1a1a1a;
|
background: #1a1a1a;
|
||||||
}
|
}
|
||||||
#custom-launcher,
|
|
||||||
#workspaces,
|
#workspaces,
|
||||||
#clock.1,
|
#clock.1,
|
||||||
#clock.2,
|
#clock.2,
|
||||||
@ -74,7 +69,6 @@ window#waybar {
|
|||||||
#memory,
|
#memory,
|
||||||
#cpu,
|
#cpu,
|
||||||
#tray,
|
#tray,
|
||||||
#custom-launcher,
|
|
||||||
#disk {
|
#disk {
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
}
|
}
|
||||||
|
|||||||
10
home.nix
10
home.nix
@ -58,6 +58,16 @@
|
|||||||
EDITOR = "vim";
|
EDITOR = "vim";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.zsh = {
|
||||||
|
enable = true;
|
||||||
|
enableCompletion = true;
|
||||||
|
autosuggestion.enable = true;
|
||||||
|
syntaxHighlighting.enable = true;
|
||||||
|
history.size = 100000;
|
||||||
|
shellAliases = {
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user