non important commit
This commit is contained in:
parent
715efa2ef6
commit
d5fe4d6796
4 changed files with 35 additions and 0 deletions
|
|
@ -36,6 +36,7 @@
|
||||||
pkgs.fastfetch
|
pkgs.fastfetch
|
||||||
pkgs.pavucontrol
|
pkgs.pavucontrol
|
||||||
pkgs.btop
|
pkgs.btop
|
||||||
|
pkgs.playerctl
|
||||||
|
|
||||||
pkgs.discord
|
pkgs.discord
|
||||||
pkgs.heroic
|
pkgs.heroic
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
]))
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
def main():
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|
@ -12,6 +12,11 @@
|
||||||
"super + d" = "discord";
|
"super + d" = "discord";
|
||||||
"super + a" = "rofi -show drun";
|
"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 + plus" = "bspc desktop --focus focused:^1";
|
||||||
"super + ecaron" = "bspc desktop --focus focused:^2";
|
"super + ecaron" = "bspc desktop --focus focused:^2";
|
||||||
"super + scaron" = "bspc desktop --focus focused:^3";
|
"super + scaron" = "bspc desktop --focus focused:^3";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue