bump steveej-t14
This commit is contained in:
parent
dbb92f6d85
commit
768ea36d85
3 changed files with 18 additions and 5 deletions
|
@ -286,6 +286,10 @@ mouse = [
|
||||||
def disable_floating_for_all_new_windows(window):
|
def disable_floating_for_all_new_windows(window):
|
||||||
window.floating = False
|
window.floating = False
|
||||||
|
|
||||||
|
@hook.subscribe.client_new
|
||||||
|
def disable_floating_for_all_new_windows(window):
|
||||||
|
print("new window: ", window)
|
||||||
|
|
||||||
wmname = "LG3D"
|
wmname = "LG3D"
|
||||||
'';
|
'';
|
||||||
in {
|
in {
|
||||||
|
|
|
@ -2,7 +2,7 @@ let
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
url = "https://github.com/NixOS/nixpkgs/";
|
url = "https://github.com/NixOS/nixpkgs/";
|
||||||
ref = "nixos-21.05";
|
ref = "nixos-21.05";
|
||||||
rev = "733682c32929293341f113f297b64ea6319e9089";
|
rev = "74d017edb6717ad76d38edc02ad3210d4ad66b96";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
||||||
|
@ -15,16 +15,16 @@ in
|
||||||
"channels-nixos-unstable" = {
|
"channels-nixos-unstable" = {
|
||||||
url = "https://github.com/NixOS/nixpkgs/";
|
url = "https://github.com/NixOS/nixpkgs/";
|
||||||
ref = "nixos-unstable";
|
ref = "nixos-unstable";
|
||||||
rev = "439b1605227b8adb1357b55ce8529d541abbe9eb";
|
rev = "8d8a28b47b7c41aeb4ad01a2bd8b7d26986c3512";
|
||||||
};
|
};
|
||||||
"nixpkgs-master" = {
|
"nixpkgs-master" = {
|
||||||
url = "https://github.com/NixOS/nixpkgs/";
|
url = "https://github.com/NixOS/nixpkgs/";
|
||||||
ref = "master";
|
ref = "master";
|
||||||
rev = "06667df72b73dd4a9b7351bc49bc9f7b654711ce";
|
rev = "df3f3ccc6db11bcaee44a736044ca9ce1dd5eb72";
|
||||||
};
|
};
|
||||||
"home-manager-module" = {
|
"home-manager-module" = {
|
||||||
url = "https://github.com/nix-community/home-manager";
|
url = "https://github.com/nix-community/home-manager";
|
||||||
ref = "release-21.05";
|
ref = "release-21.05";
|
||||||
rev = "b39647e52ed3c0b989e9d5c965e598ae4c38d7ef";
|
rev = "f5adb9be829f487f99bcc0f1884f74ddb85f70c8";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ in {
|
||||||
# TODO: facetimehd is currfently broken (https://github.com/NixOS/nixpkgs/pull/72804)
|
# TODO: facetimehd is currfently broken (https://github.com/NixOS/nixpkgs/pull/72804)
|
||||||
facetimehd-firmware = super.hello;
|
facetimehd-firmware = super.hello;
|
||||||
|
|
||||||
qtile = self.nixpkgs-master.qtile.overrideAttrs(oldAttrs: {
|
qtile = super.qtile.overrideAttrs(oldAttrs: {
|
||||||
pythonPath = oldAttrs.pythonPath ++ (with self.python37Packages; [
|
pythonPath = oldAttrs.pythonPath ++ (with self.python37Packages; [
|
||||||
psutil
|
psutil
|
||||||
dbus-python
|
dbus-python
|
||||||
|
@ -45,6 +45,15 @@ in {
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
# master is currently not compatible with the 21.05 channel
|
||||||
|
# qtile = self.nixpkgs-master.qtile.overrideAttrs(oldAttrs: {
|
||||||
|
# propagatedBuildInputs = oldAttrs.passthru.unwrapped.propagatedBuildInputs ++ (with self.python3Packages; [
|
||||||
|
# # python-wifi
|
||||||
|
# # iwlib
|
||||||
|
# keyring
|
||||||
|
# ]);
|
||||||
|
# });
|
||||||
|
|
||||||
btrbk = super.btrbk.overrideAttrs(attrs: rec {
|
btrbk = super.btrbk.overrideAttrs(attrs: rec {
|
||||||
version = "0.30.0";
|
version = "0.30.0";
|
||||||
src = builtins.fetchurl {
|
src = builtins.fetchurl {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue