updating flake

This commit is contained in:
Gabriella Bere 2024-08-23 13:23:57 +01:00
parent e1d94eefba
commit e5dd402fdb
4 changed files with 9 additions and 8 deletions

12
flake.lock generated
View file

@ -50,11 +50,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1723986931, "lastModified": 1724412708,
"narHash": "sha256-Fy+KEvDQ+Hc8lJAV3t6leXhZJ2ncU5/esxkgt3b8DEY=", "narHash": "sha256-tLr1k+UZLVumyqXRU8E5lBtLjsvHSy8e2NiamfkjpYg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2598861031b78aadb4da7269df7ca9ddfc3e1671", "rev": "b18f3ebc4029c22d437e3424014c8597a8b459a0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -89,11 +89,11 @@
}, },
"stablepkgs": { "stablepkgs": {
"locked": { "locked": {
"lastModified": 1724242322, "lastModified": 1724316499,
"narHash": "sha256-HMpK7hNjhEk4z5SFg5UtxEio9OWFocHdaQzCfW1pE7w=", "narHash": "sha256-Qb9MhKBUTCfWg/wqqaxt89Xfi6qTD3XpTzQ9eXi3JmE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "224042e9a3039291f22f4f2ded12af95a616cca0", "rev": "797f7dc49e0bc7fab4b57c021cdf68f595e47841",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -33,6 +33,7 @@
./modules/environment.nix ./modules/environment.nix
./modules/waydroid.nix ./modules/waydroid.nix
home-manager.nixosModules.default home-manager.nixosModules.default
inputs.anyrun.homeManagerModules.default
]; ];
}; };
}; };

View file

@ -242,7 +242,7 @@
config = { config = {
plugins = [ plugins = [
# An array of all the plugins you want, which either can be paths to the .so files, or their packages # An array of all the plugins you want, which either can be paths to the .so files, or their packages
inputs.anyrun.packages.${pkgs.system}.applications # inputs.anyrun.packages.${pkgs.system}.applications
# ./some_plugin.so # ./some_plugin.so
# "${inputs.anyrun.packages.${pkgs.system}.anyrun-with-all-plugins}/lib/kidex" # "${inputs.anyrun.packages.${pkgs.system}.anyrun-with-all-plugins}/lib/kidex"
]; ];

View file

@ -106,7 +106,7 @@
}; };
home-manager = { home-manager = {
extraSpeicalArgs = { inherit inputs; }; extraSpecialArgs = { inherit inputs; };
users = { users = {
"blue" = import ../../home-manager/home.nix; "blue" = import ../../home-manager/home.nix;
}; };