aboutsummaryrefslogtreecommitdiff
path: root/system/nixowos.nix
blob: a716723aba9cb0b124b5b94f3c2edd2b25ba143f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{...}: {
  nixowos = {
    enable = true;
    overlays = {
      enable = true;
      nixos-icons = true;
    };
    os-release = {
      enable = true;
      changeName = true;
    };
  };
}