Compare commits
2 commits
f9c5c547e4
...
37211b4971
Author | SHA1 | Date | |
---|---|---|---|
37211b4971 | |||
095913b8db |
5 changed files with 15 additions and 5 deletions
|
@ -270,8 +270,7 @@
|
||||||
specialArgs = mkSpecialArgs system;
|
specialArgs = mkSpecialArgs system;
|
||||||
modules = linuxOfflineGuiModules [
|
modules = linuxOfflineGuiModules [
|
||||||
./nixos/hosts/trailblazer
|
./nixos/hosts/trailblazer
|
||||||
./nixos/configs/looking-glass.nix
|
./nixos/configs/vmware.nix
|
||||||
./nixos/configs/serve-cache.nix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,11 @@ in
|
||||||
ms-vscode.makefile-tools
|
ms-vscode.makefile-tools
|
||||||
streetsidesoftware.code-spell-checker
|
streetsidesoftware.code-spell-checker
|
||||||
|
|
||||||
|
# nix
|
||||||
|
jnoortheen.nix-ide
|
||||||
|
arrterian.nix-env-selector
|
||||||
|
brettm12345.nixfmt-vscode
|
||||||
|
|
||||||
# rust
|
# rust
|
||||||
fill-labs.dependi
|
fill-labs.dependi
|
||||||
rust-lang.rust-analyzer
|
rust-lang.rust-analyzer
|
||||||
|
|
|
@ -223,8 +223,10 @@ in
|
||||||
"Mod+D".action = spawn "fuzzel";
|
"Mod+D".action = spawn "fuzzel";
|
||||||
"Mod+Space".action = spawn "fuzzel";
|
"Mod+Space".action = spawn "fuzzel";
|
||||||
|
|
||||||
"XF86AudioRaiseVolume".action = sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1+";
|
"XF86AudioRaiseVolume".action = sh "wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 0.1+";
|
||||||
"XF86AudioLowerVolume".action = sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1-";
|
"XF86AudioLowerVolume".action = sh "wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 0.1-";
|
||||||
|
"XF86Launch6".action = sh "wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 0.1-";
|
||||||
|
"XF86Tools".action = sh "wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 0.1+";
|
||||||
"XF86AudioMute".action = sh "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
|
"XF86AudioMute".action = sh "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
|
||||||
|
|
||||||
"XF86MonBrightnessDown".action = sh "brightnessctl set 10%-";
|
"XF86MonBrightnessDown".action = sh "brightnessctl set 10%-";
|
||||||
|
@ -244,6 +246,7 @@ in
|
||||||
"XF86AudioPrev".action = sh "mpc prev";
|
"XF86AudioPrev".action = sh "mpc prev";
|
||||||
"XF86AudioNext".action = sh "mpc next";
|
"XF86AudioNext".action = sh "mpc next";
|
||||||
"XF86AudioPlay".action = sh "mpc toggle";
|
"XF86AudioPlay".action = sh "mpc toggle";
|
||||||
|
"XF86Launch5".action = sh "mpc toggle";
|
||||||
}
|
}
|
||||||
(binds {
|
(binds {
|
||||||
suffixes."Left" = "column-left";
|
suffixes."Left" = "column-left";
|
||||||
|
|
|
@ -197,7 +197,7 @@ in
|
||||||
|
|
||||||
# Provide docker for remote tasks.
|
# Provide docker for remote tasks.
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
users.users.deprekated.extragroups = [ "docker" ];
|
users.users.deprekated.extraGroups = [ "docker" ];
|
||||||
|
|
||||||
#
|
#
|
||||||
# Trailblazer remote service (allows trailblazer things to be controlled via Home Assistant.
|
# Trailblazer remote service (allows trailblazer things to be controlled via Home Assistant.
|
||||||
|
|
|
@ -158,6 +158,7 @@ with pkgs;
|
||||||
|
|
||||||
# Development.
|
# Development.
|
||||||
colmena
|
colmena
|
||||||
|
rustup
|
||||||
rustfmt
|
rustfmt
|
||||||
cargo
|
cargo
|
||||||
clang
|
clang
|
||||||
|
@ -198,6 +199,8 @@ with pkgs;
|
||||||
i2c-tools
|
i2c-tools
|
||||||
pcsc-tools
|
pcsc-tools
|
||||||
davfs2
|
davfs2
|
||||||
|
evtest
|
||||||
|
libinput
|
||||||
|
|
||||||
]
|
]
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue