mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08:00
Compare commits
No commits in common. "49c72907d921820e798b98550fb1eb2e1886dcc7" and "f05231223bb25a453c3e881be74f8af44a7516a1" have entirely different histories.
49c72907d9
...
f05231223b
4 changed files with 23 additions and 34 deletions
|
@ -69,7 +69,7 @@
|
||||||
apple-silicon,
|
apple-silicon,
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs: let
|
||||||
in {
|
in rec {
|
||||||
formatter = with nixpkgs.legacyPackages; {
|
formatter = with nixpkgs.legacyPackages; {
|
||||||
x86_64-linux = x86_64-linux.alejandra;
|
x86_64-linux = x86_64-linux.alejandra;
|
||||||
aarch64-linux = aarch64-linux.alejandra;
|
aarch64-linux = aarch64-linux.alejandra;
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
services.spotifyd = {
|
|
||||||
enable = true;
|
|
||||||
# settings = {global = 320;};
|
|
||||||
};
|
|
||||||
environment.systemPackages = [
|
|
||||||
pkgs.spotify-player
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -4,34 +4,16 @@
|
||||||
system,
|
system,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home.packages = with pkgs; [
|
|
||||||
wl-clipboard
|
|
||||||
grim
|
|
||||||
slurp
|
|
||||||
swappy
|
|
||||||
pavucontrol
|
|
||||||
waypaper
|
|
||||||
swaybg
|
|
||||||
pamixer
|
|
||||||
brightnessctl
|
|
||||||
|
|
||||||
bibata-cursors
|
|
||||||
libsForQt5.qtstyleplugin-kvantum
|
|
||||||
libsForQt5.qt5ct
|
|
||||||
papirus-icon-theme
|
|
||||||
libsForQt5.qt5ct
|
|
||||||
];
|
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.stablepkgs.legacyPackages.${system}.hyprland;
|
package = inputs.stablepkgs.legacyPackages.${system}.hyprland;
|
||||||
settings = {
|
settings = {
|
||||||
exec-once = ["waypaper --restore"];
|
exec-once = ["waypaper --restore"];
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
"$Left" = "H";
|
"$Left" = "Y";
|
||||||
"$Right" = "L";
|
"$Right" = "O";
|
||||||
"$Up" = "K";
|
"$Up" = "I";
|
||||||
"$Down" = "J";
|
"$Down" = "U";
|
||||||
env = [
|
env = [
|
||||||
"HYPRCURSOR_THEME,Bibata-Modern-Ice"
|
"HYPRCURSOR_THEME,Bibata-Modern-Ice"
|
||||||
"HYPRCURSOR_SIZE,26"
|
"HYPRCURSOR_SIZE,26"
|
||||||
|
@ -48,7 +30,7 @@
|
||||||
# Window actions
|
# Window actions
|
||||||
"$mod, Q, killactive"
|
"$mod, Q, killactive"
|
||||||
"$mod, W, togglefloating"
|
"$mod, W, togglefloating"
|
||||||
"$mod, V, togglesplit"
|
"$mod, J, togglesplit"
|
||||||
"$mod, Return, fullscreen"
|
"$mod, Return, fullscreen"
|
||||||
|
|
||||||
# Move around
|
# Move around
|
||||||
|
@ -91,7 +73,7 @@
|
||||||
|
|
||||||
"$mod, Backspace, exec, wlogout" # show logout menu
|
"$mod, Backspace, exec, wlogout" # show logout menu
|
||||||
|
|
||||||
"$mod, I, exec, hyprlock"
|
"$mod, L, exec, hyprlock"
|
||||||
|
|
||||||
# System control
|
# System control
|
||||||
",XF86MonBrightnessDown, exec, brightnessctl set 5%-"
|
",XF86MonBrightnessDown, exec, brightnessctl set 5%-"
|
||||||
|
|
|
@ -22,6 +22,15 @@ with pkgs; [
|
||||||
usbutils # lsusb
|
usbutils # lsusb
|
||||||
|
|
||||||
# desktop utils
|
# desktop utils
|
||||||
|
wl-clipboard
|
||||||
|
grim
|
||||||
|
slurp
|
||||||
|
swappy
|
||||||
|
pavucontrol
|
||||||
|
waypaper
|
||||||
|
swaybg
|
||||||
|
pamixer
|
||||||
|
brightnessctl
|
||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
|
|
||||||
# desktop apps
|
# desktop apps
|
||||||
|
@ -31,4 +40,11 @@ with pkgs; [
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
|
||||||
gcc
|
gcc
|
||||||
|
|
||||||
|
# desktop ricing
|
||||||
|
bibata-cursors
|
||||||
|
libsForQt5.qtstyleplugin-kvantum
|
||||||
|
libsForQt5.qt5ct
|
||||||
|
papirus-icon-theme
|
||||||
|
libsForQt5.qt5ct
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue