This commit is contained in:
2025-12-31 15:48:38 +01:00
parent 7fb80baf59
commit 8353577620
5 changed files with 87 additions and 4 deletions

View File

@@ -27,5 +27,7 @@
dconf.enable = true;
};
hardware.graphics.enable = true;
system.stateVersion = "25.11";
}

View File

@@ -1,8 +1,8 @@
{inputs, ... }: {
{inputs, lib, ... }: {
imports = [
inputs.disko.nixosModules.disko
../common/optional/ephermal-btrfs.nix
../common/optional/ephemeral-btrfs.nix
];
boot = {
@@ -31,7 +31,7 @@
type = "disk";
content = {
type = "gpt";
partions = {
partitions = {
boot = {
size = "1M";
type = "EF02";
@@ -88,6 +88,7 @@
};
};
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}