mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-10-29 05:40:21 -04:00
ver: upgrade to wlroots-0.19 version
This commit is contained in:
parent
54de782f90
commit
d636ef97ac
12 changed files with 2179 additions and 1947 deletions
10
flake.nix
10
flake.nix
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
|
||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
treefmt-nix = {
|
||||
url = "github:numtide/treefmt-nix";
|
||||
|
|
@ -25,8 +26,8 @@
|
|||
];
|
||||
|
||||
flake = {
|
||||
hmModules.maomaowm = import ./nix/hm-modules.nix;
|
||||
nixosModules.maomaowm = import ./nix/nixos-modules.nix { inherit inputs self; };
|
||||
hmModules.maomaowm = import ./nix/hm-modules.nix self;
|
||||
nixosModules.maomaowm = import ./nix/nixos-modules.nix self;
|
||||
};
|
||||
|
||||
perSystem =
|
||||
|
|
@ -39,7 +40,10 @@
|
|||
inherit (pkgs)
|
||||
callPackage
|
||||
;
|
||||
maomaowm = callPackage ./nix { };
|
||||
maomaowm = callPackage ./nix {
|
||||
inherit (inputs.nixpkgs-wayland.packages.${pkgs.system}) wlroots;
|
||||
inherit (inputs.mmsg.packages.${pkgs.system}) mmsg;
|
||||
};
|
||||
shellOverride = old: {
|
||||
nativeBuildInputs = old.nativeBuildInputs ++ [ ];
|
||||
buildInputs = old.buildInputs ++ [ ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue