first stage of laptop flake

This commit is contained in:
atagen 2023-05-17 21:02:01 +10:00
parent 4aa5519043
commit 739acea0a2
3 changed files with 137 additions and 0 deletions

View file

@ -128,4 +128,6 @@ bind=,XF86AudioStop,exec,playerctl stop
bind=,XF86AudioPlay,exec,playerctl play-pause
bind=,XF86AudioPrev,exec,playerctl previous
bind=,XF86AudioNext,exec,playerctl next
bind=,XF86MonBrightnessUp,exec,brightnessctl,s +10%
bind=,XF86MonBrightnessDown,exec,brightnessctl,s -10%

17
home/plank.nix Normal file
View file

@ -0,0 +1,17 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./home.nix
];
home = {
username = "plank";
homeDirectory = "/home/plank";
};
}