Compare commits
3 Commits
8e3ce58551
...
2ce393d1ae
Author | SHA1 | Date | |
---|---|---|---|
2ce393d1ae | |||
6ccebdadfc | |||
0975f7be18 |
@ -8,10 +8,21 @@
|
|||||||
{
|
{
|
||||||
# nix.settings.experimental-features = ["nix-command" "flakes" ];
|
# nix.settings.experimental-features = ["nix-command" "flakes" ];
|
||||||
|
|
||||||
fileSystems."/ntfs" = {
|
fileSystems = lib.mkMerge [
|
||||||
|
{
|
||||||
|
"/ntfs" = {
|
||||||
fsType = "ntfs-3g";
|
fsType = "ntfs-3g";
|
||||||
device = "/dev/disk/by-uuid/028A49020517BEA9";
|
device = "/dev/disk/by-uuid/028A49020517BEA9";
|
||||||
};
|
};
|
||||||
|
"/.btrfsroot" = {
|
||||||
|
options = [ "subvol=/" ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
(lib.genAttrs [ "/.btrfsroot" "/" "/home" "/nix" ] ( fs: {
|
||||||
|
options = [ "compress=zstd" ];
|
||||||
|
}))
|
||||||
|
];
|
||||||
|
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
|
@ -27,6 +27,8 @@ in
|
|||||||
capSysNice = lib.mkDefault false;
|
capSysNice = lib.mkDefault false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
virtualisation.waydroid.enable = lib.mkDefault true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
mangohud
|
mangohud
|
||||||
goverlay
|
goverlay
|
||||||
|
Loading…
x
Reference in New Issue
Block a user