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

10
Stuff/users.nix Normal file
View File

@@ -0,0 +1,10 @@
{lib, config, pkgs, ... }:
{
users.users.otaku619 = {
isNormalUser = true;
shell = pkgs.fish;
home = "/home/otaku619";
extraGroups = [ "wheel" "video" "audio" ];
};
}