Added NixOS configs

This commit is contained in:
2021-03-31 05:41:15 +05:30
commit 2680d535b5
21 changed files with 1902 additions and 0 deletions

12
configuration.nix Normal file
View File

@@ -0,0 +1,12 @@
{lib, config, pkgs, ... }:
{
imports =
[
./hardware.nix
./stuff.nix
./pkgs.nix
./networking.nix
];
system.stateVersion = "20.09";
}