about summary refs log blame commit diff
path: root/users/sterni/machines/edwin/default.nix
blob: 68f20787a9bfdd43487e66e25327a6fd76ef1fcf (plain) (tree)
1
2
3
4
5
6
7
8





                                                     

                            



                                                                                    
                                                              


            


                                  
{ config, lib, pkgs, depot, ... }:

{
  imports = [
    # Third party modules we use
    "${depot.third_party.agenix.src}/modules/age.nix"
    # Basic settings
    ../../modules/common.nix
    # These modules touch things related to booting (filesystems, initrd network…)
    ./hardware.nix
    ./network.nix
    # These modules configure services, websites etc.
    (depot.path.origSrc + "/ops/modules/btrfs-auto-scrub.nix")
  ];

  config = {
    system.stateVersion = "20.09";
  };
}