Update hyprpaper

This commit is contained in:
Nathan McCarty 2023-07-26 11:10:02 -04:00
parent 39169ba622
commit 48caab2c27
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
4 changed files with 27 additions and 4 deletions

View File

@ -237,6 +237,26 @@
"type": "github"
}
},
"hyprpaper": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1690361100,
"narHash": "sha256-e3V2avzF3yY+OBWr5fZ5jTHq6Jm2olnmd95E2jAkyCY=",
"owner": "hyprwm",
"repo": "hyprpaper",
"rev": "9261356bd74fadbc544bec22c16aec62ebba13bd",
"type": "github"
},
"original": {
"owner": "hyprwm",
"repo": "hyprpaper",
"type": "github"
}
},
"idris-emacs-src": {
"flake": false,
"locked": {
@ -624,6 +644,7 @@
"hyprland": "hyprland",
"hyprland-contrib": "hyprland-contrib",
"hyprland-protocols": "hyprland-protocols",
"hyprpaper": "hyprpaper",
"idris2": "idris2",
"java": "java",
"nix-on-droid": "nix-on-droid",

View File

@ -23,6 +23,10 @@
inputs.nixpkgs.follows = "nixpkgs";
inputs.hyprland-protocols.follows = "hyprland-protocols";
};
hyprpaper = {
url = "github:hyprwm/hyprpaper";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland-contrib.url = "github:hyprwm/contrib";
nix-on-droid = {
url = "github:t184256/nix-on-droid";

View File

@ -23,7 +23,7 @@ in with lib; {
hyprland = config.wayland.windowManager.hyprland.package;
})
## Hyprland addons
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.hyprpaper
inputs.hyprpaper.packages.${pkgs.system}.hyprpaper
inputs.self.packages.${pkgs.system}.pyprland
# Auto workspace renaming
inputs.self.packages.${pkgs.system}.hyprland-autoname-workspaces

View File

@ -83,9 +83,7 @@
Service = {
Type = "simple";
ExecStart = ''
${
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.hyprpaper
}/bin/hyprpaper
${inputs.hyprpaper.packages.${pkgs.system}.hyprpaper}/bin/hyprpaper
'';
};
Install = { WantedBy = [ "graphical-session.target" ]; };