wow
This commit is contained in:
parent
251f47fa99
commit
8011eab5b5
3 changed files with 21 additions and 1 deletions
|
|
@ -18,6 +18,7 @@
|
||||||
"${inputs.self}/modules/mizukios/features/system/virtualisation.nix"
|
"${inputs.self}/modules/mizukios/features/system/virtualisation.nix"
|
||||||
"${inputs.self}/modules/mizukios/features/steam.nix"
|
"${inputs.self}/modules/mizukios/features/steam.nix"
|
||||||
"${inputs.self}/modules/mizukios/features/remote/sunshine.nix"
|
"${inputs.self}/modules/mizukios/features/remote/sunshine.nix"
|
||||||
|
"${inputs.self}/modules/mizukios/features/waydroid.nix"
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
|
@ -48,7 +49,15 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
services.printing.enable = true;
|
services.printing = {
|
||||||
|
enable = true;
|
||||||
|
drivers = with pkgs; [
|
||||||
|
cups-filters
|
||||||
|
cups-browsed
|
||||||
|
pantum-driver
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
services.flatpak.enable = true;
|
services.flatpak.enable = true;
|
||||||
|
|
||||||
system.stateVersion = "26.05";
|
system.stateVersion = "26.05";
|
||||||
|
|
|
||||||
|
|
@ -90,6 +90,9 @@ with pkgs;
|
||||||
inputs.codex-app.packages.${stdenv.buildPlatform.system}.codex-desktop
|
inputs.codex-app.packages.${stdenv.buildPlatform.system}.codex-desktop
|
||||||
|
|
||||||
proton-vpn
|
proton-vpn
|
||||||
|
protonmail-desktop
|
||||||
|
protonmail-bridge
|
||||||
|
protonmail-bridge-gui
|
||||||
|
|
||||||
moonlight-qt
|
moonlight-qt
|
||||||
|
|
||||||
|
|
|
||||||
8
modules/mizukios/features/waydroid.nix
Normal file
8
modules/mizukios/features/waydroid.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
virtualisation.waydroid.enable = true;
|
||||||
|
# Newer kernel versions may need
|
||||||
|
virtualisation.waydroid.package = pkgs.waydroid-nftables;
|
||||||
|
|
||||||
|
# Enable clipboard sharing
|
||||||
|
environment.systemPackages = [ pkgs.wl-clipboard ];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue