nixos-config/default.nix
2019-09-11 17:17:56 +04:00

29 lines
671 B
Nix

# This is AlukardBF's configuration file.
#
# Thanks for original config - balsoft.
#
# https://github.com/AlukardBF/nixos-config
#
# This is main nixos configuration
# To use this configuration:
# 1. Add your own secret.nix to this folder
# 2. Replace /etc/nixos/configuration.nix with the following:
# import /path/to/this/nixos-config "Vendor-Type"
# 3. Log in to application and services where neccesary
device: # This is the device we're on now
{ config, pkgs, lib, ... }:
{
imports =
[
/etc/nixos/hardware-configuration.nix
./imports/github/rycee/home-manager/nixos
./modules
];
inherit device;
system.stateVersion = "19.03";
}