added host Marisa (haven't tested config yet)

This commit is contained in:
2021-05-19 06:28:14 +05:30
parent a3033000a9
commit 63262b85ff
28 changed files with 1465 additions and 133 deletions

31
marisa/stuff.nix Normal file
View File

@@ -0,0 +1,31 @@
{config, pkgs, ...}:
{
time.timeZone = "Asia/Kolkata";
environment = {
sessionVariables = {
EDITOR = "vim";
};
};
security = {
sudo.enable = false;
doas = {
enable = true;
extraRules = [
{
users = [ "ottan" ];
keepEnv = true;
persist = true;
}
];
};
};
fonts.fonts = with pkgs; [
fira-mono
];
users.users.ottan = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/ottan";
extraGroups = [ "wheel" ];
};
}