non important commit

This commit is contained in:
benstrb 2026-01-14 21:30:05 +01:00
parent 715efa2ef6
commit d5fe4d6796
4 changed files with 35 additions and 0 deletions

View file

@ -36,6 +36,7 @@
pkgs.fastfetch
pkgs.pavucontrol
pkgs.btop
pkgs.playerctl
pkgs.discord
pkgs.heroic

View file

@ -0,0 +1,23 @@
{
description = "My python development shell";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
devShells."${system}" = {
default = pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (python-pkgs: [
python-pkgs.numpy
python-pkgs.pandas
]))
];
};
};
};
}

View file

@ -0,0 +1,6 @@
def main():
pass
if __name__ == "__main__":
main()

View file

@ -12,6 +12,11 @@
"super + d" = "discord";
"super + a" = "rofi -show drun";
",XF86AudioPlay" = "playerctl play-pause";
",XF86AudioNext" = "playerctl next";
",XF86AudioPrev" = "playerctl previous";
",XF86AudioStop" = "playerctl stop";
"super + plus" = "bspc desktop --focus focused:^1";
"super + ecaron" = "bspc desktop --focus focused:^2";
"super + scaron" = "bspc desktop --focus focused:^3";