nixos-config/default.nix

15 lines
294 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")
2020-08-10 01:17:22 +04:00
(import inputs.base16.hmModule)
2020-02-07 03:52:17 +04:00
(import ./modules device)
2019-08-27 23:41:02 +04:00
];
2020-09-26 03:33:55 +04:00
home-manager.users.alukard.home.stateVersion = "20.09";
system.stateVersion = "20.09";
2019-08-27 23:41:02 +04:00
}