Skip to content

Commit 6f7ff4c

Browse files
committed
Update
1 parent c367e05 commit 6f7ff4c

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

hosts/X13Gen2/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ nixpkgs.lib.nixosSystem {
1515
modules = [
1616
../../nixos
1717
./hardware-configuration.nix
18-
./disko-config.nix
18+
# ./disko-config.nix
1919
disko.nixosModules.disko
2020
home-manager.nixosModules.home-manager
2121
{

hosts/X13Gen2/hardware-configuration.nix

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,24 @@
99

1010
services.xserver.videoDrivers = [ "amdgpu" ];
1111

12+
fileSystems."/" = {
13+
device = "/dev/disk/by-uuid/784ff1be-5b0e-4b59-af05-bf03cb580b42";
14+
fsType = "ext4";
15+
};
16+
17+
fileSystems."/boot" = {
18+
device = "/dev/disk/by-uuid/B589-AD30";
19+
fsType = "vfat";
20+
options = [
21+
"fmask=0077"
22+
"dmask=0077"
23+
];
24+
};
25+
26+
swapDevices = [
27+
{ device = "/dev/disk/by-uuid/94617a47-e3be-4a19-9e70-1264c383b719"; }
28+
];
29+
1230
boot = {
1331
initrd = {
1432
availableKernelModules = [

0 commit comments

Comments
 (0)