I don't fucking know it should work but it's not

This commit is contained in:
jacekpoz 2023-07-16 19:15:02 +02:00
parent 656079cd9a
commit cb241a262b
4 changed files with 14 additions and 37 deletions

View file

@ -10,11 +10,11 @@
]
},
"locked": {
"lastModified": 1689084705,
"narHash": "sha256-FKIqKmXml0vNy8BcS95OdVnIFwGbGF3pgu+raj51cv4=",
"lastModified": 1689519284,
"narHash": "sha256-C46+7N71/THMkhyfxzHodm1N89w3GDbYat+mn32QjV4=",
"owner": "famedly",
"repo": "conduit",
"rev": "3c6ffd88bf298d61df244c17c14557b646a14e6c",
"rev": "e9946f81a09b02b12062e2cb999d6836e467e2d7",
"type": "gitlab"
},
"original": {
@ -113,11 +113,11 @@
]
},
"locked": {
"lastModified": 1688731042,
"narHash": "sha256-D1p/LLP1SpDYjutt9W+O5Ek+XGdszsjYjvL30ad++OY=",
"lastModified": 1689495092,
"narHash": "sha256-yZu2j5FpLZEPhJQQutMCPTxa1VMigLPabLYvLTq6ASM=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "34db2f05219bcb0e41cc85490e4c338e2405546c",
"rev": "2f84579a70b8c74e5ebb37299a0c3ba279f09382",
"type": "github"
},
"original": {
@ -134,11 +134,11 @@
"xdph": "xdph"
},
"locked": {
"lastModified": 1688750375,
"narHash": "sha256-BjFycq8qgBYFYC+b2/fb75Mp6fn1xo0bL4MSSsVu0hM=",
"lastModified": 1689519965,
"narHash": "sha256-2C9RqRMT4XSsJ9hfGCUyqu8hXCbyhk84F3pEYpm680s=",
"owner": "hyprwm",
"repo": "Hyprland",
"rev": "f49af187bc0755f9b5be9376bfd52c0cf12c1e11",
"rev": "b156a9654ff3379b8b40e7b03bb832924ba4665e",
"type": "github"
},
"original": {
@ -263,11 +263,11 @@
},
"nixpkgs_3": {
"locked": {
"lastModified": 1688590700,
"narHash": "sha256-ZF055rIUP89cVwiLpG5xkJzx00gEuuGFF60Bs/LM3wc=",
"lastModified": 1689444953,
"narHash": "sha256-0o56bfb2LC38wrinPdCGLDScd77LVcr7CrH1zK7qvDg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "f292b4964cb71f9dfbbd30dc9f511d6165cd109b",
"rev": "8acef304efe70152463a6399f73e636bcc363813",
"type": "github"
},
"original": {

View file

@ -16,6 +16,7 @@
hyprland.url = "github:hyprwm/Hyprland";
hyprland-plugins.url = "github:hyprwm/hyprland-plugins";
split-monitor-workspaces.url = "github:jacekpoz/split-monitor-workspaces";
home-manager = {
url = "github:nix-community/home-manager";

View file

@ -9,7 +9,7 @@
enable = true;
plugins = [
inputs.hyprland-plugins.packages.${pkgs.system}.csgo-vulkan-fix
pkgs.callPackage ./split-monitor-workspaces {inherit (pkgs.hyprland.packages.${pkgs.system}) hyprland;}
inputs.split-monitor-workspaces.packages.${pkgs.system}.split-monitor-workspaces
];
extraConfig = ''
#laptop

View file

@ -1,24 +0,0 @@
{
lib,
stdenv,
hyprland,
}: stdenv.mkDerivation {
name = "split-monitor-workspaces";
src = lib.fetchFromGithub {
owner = "Duckonaut";
repo = "split-monitor-workspaces";
rev = "07696f7f8d2681c3c9d4d0d2f99c679cb941e8e7";
sha256 = "";
};
inherit (hyprland) nativeBuildInputs;
buildInputs = [hyprland] ++ hyprland.buildInputs;
meta = with lib; {
homepage = "https://github.com/Duckonaut/split-monitor-workspaces";
description = "A small Hyprland plugin to provide awesome-like workspace behavior";
license = licenses.bsd3;
platforms = platforms.linux;
};
}