diff options
author | tzlil <tzlils@protonmail.com> | 2023-05-16 20:44:21 +0300 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-05-16 20:44:21 +0300 |
commit | 57cbc3ac65272242bfee162b916d9675935e9c2e (patch) | |
tree | 0f6a3d99bfc1dbcda9eabcb71fb897fea73f09a0 /mixins | |
parent | 583dd2ebccd5a5144a6289ccc1adef3a0789637e (diff) |
networkmanager is annoying me and nothing else works, need to fix dns
Diffstat (limited to 'mixins')
-rw-r--r-- | mixins/cli.nix | 13 | ||||
-rw-r--r-- | mixins/emacs/default.nix | 2 | ||||
-rw-r--r-- | mixins/sway.nix | 2 |
3 files changed, 11 insertions, 6 deletions
diff --git a/mixins/cli.nix b/mixins/cli.nix index db77ab8..84a5e3d 100644 --- a/mixins/cli.nix +++ b/mixins/cli.nix @@ -11,7 +11,7 @@ config, nixosConfig, ... - } @ hm: { + }: { imports = [ # inputs.viper-nix-common.homeModules.xdg ]; @@ -22,9 +22,14 @@ ripgrep bat croc - (pkgs.python3.withPackages (ps: with ps; [ - requests - ])) + + # crap i need in my shell for general usage, mostly data science + (pkgs.python3.withPackages (ps: + with ps; [ + requests + numpy + more-itertools + ])) ]; sessionVariables = { EDITOR = "nvim"; diff --git a/mixins/emacs/default.nix b/mixins/emacs/default.nix index 27e1106..b44da80 100644 --- a/mixins/emacs/default.nix +++ b/mixins/emacs/default.nix @@ -13,7 +13,7 @@ config, nixosConfig, ... - } @ hm: { + }: { home = { packages = with pkgs; [ ]; diff --git a/mixins/sway.nix b/mixins/sway.nix index 42dfc73..c12d156 100644 --- a/mixins/sway.nix +++ b/mixins/sway.nix @@ -294,7 +294,7 @@ in { exec_always ${pkgs.kanshi}/bin/kanshi >/tmp/kanshi.log 2>&1 - default_border pixel 0 + default_border pixel 2 gaps outer 0 gaps inner 0 include /etc/sway/config.d/* |