nixos-config/default.nix

13 lines
249 B
Nix
Raw Normal View History

2020-08-04 01:46:48 +04:00
{ config, pkgs, lib, inputs, name, ... }:
rec {
device = name;
2019-08-27 23:41:02 +04:00
2020-02-07 03:52:17 +04:00
imports = [
2020-08-04 01:46:48 +04:00
(./hardware-configuration + "/${name}.nix")
inputs.home-manager.nixosModules.home-manager
2020-02-07 03:52:17 +04:00
(import ./modules device)
2019-08-27 23:41:02 +04:00
];
2020-08-04 01:46:48 +04:00
system.stateVersion = "20.03";
2019-08-27 23:41:02 +04:00
}