2015-10-23 01:26:53 +02:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
2016-08-31 17:44:04 +02:00
|
|
|
|
./pkg.nix
|
2015-10-23 01:26:53 +02:00
|
|
|
|
./hw.nix
|
|
|
|
|
./system.nix
|
|
|
|
|
./user.nix
|
2016-08-31 17:44:04 +02:00
|
|
|
|
./boot.nix
|
2015-10-23 01:26:53 +02:00
|
|
|
|
];
|
|
|
|
|
}
|