Skip to content

Commit

Permalink
waydroid
Browse files Browse the repository at this point in the history
  • Loading branch information
x0ba committed Feb 8, 2025
1 parent 0d2a848 commit 95165fe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions disks/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
mountOptions = ["umask=0077"];
};
};
luks = {
Expand All @@ -28,19 +28,19 @@
};
content = {
type = "btrfs";
extraArgs = [ "-f" ];
extraArgs = ["-f"];
subvolumes = {
"/root" = {
mountpoint = "/";
mountOptions = [ "compress=zstd" "noatime" ];
mountOptions = ["compress=zstd" "noatime"];
};
"/home" = {
mountpoint = "/home";
mountOptions = [ "compress=zstd" "noatime" ];
mountOptions = ["compress=zstd" "noatime"];
};
"/nix" = {
mountpoint = "/nix";
mountOptions = [ "compress=zstd" "noatime" ];
mountOptions = ["compress=zstd" "noatime"];
};
};
};
Expand Down
1 change: 0 additions & 1 deletion modules/home/apps/xdg/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ in {
# fix `nix profile` not being in PATH on macOS
"${stateHome}/nix/profile/bin"
]);
preferXdgDirectories = true;
};

xdg = {
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos/apps/gaming/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ in {
programs = {
steam = {
enable = true;
gamescopeSession.enable = true;
# gamescopeSession.enable = true;
extraPackages = with pkgs; [
corefonts
mangohud
Expand Down
1 change: 1 addition & 0 deletions modules/nixos/system/virtualization/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ in {
config = mkIf cfg.enable {
virtualisation = {
libvirtd.enable = true;
waydroid.enable = true;
podman = {
enable = true;
extraPackages = with pkgs; [
Expand Down

0 comments on commit 95165fe

Please sign in to comment.