summaryrefslogtreecommitdiffstats
path: root/tv/2configs/fs/CAC-CentOS-7-64bit.nix
blob: c9eb97f4411a08ef5fe6d6a14afd2a321fc9cb93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
_:

{
  boot.loader.grub = {
    device = "/dev/sda";
  };
  fileSystems = {
    "/" = {
      device = "/dev/centos/root";
      fsType = "xfs";
    };
    "/boot" = {
      device = "/dev/sda1";
      fsType = "xfs";
    };
  };
  swapDevices = [
    { device = "/dev/centos/swap"; }
  ];
}