Initial commit

This commit is contained in:
Charlotte Van Petegem 2020-02-06 19:53:43 +01:00
commit 4256a94080
22 changed files with 1179 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ pkgs, ... }:
{
imports = [
./secret.nix
../../programs/git/default.nix
../../programs/ssh/default.nix
../../programs/tmux/default.nix
../../programs/zsh/default.nix
];
i18n = {
defaultLocale = "en_IE.UTF-8";
extraLocaleSettings = {
LC_TIME = "en_GB.UTF-8";
};
};
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
nix.trustedUsers = [ "@wheel" ];
users = {
mutableUsers = false;
defaultUserShell = pkgs.zsh;
users = {
charlotte = {
isNormalUser = true;
home = "/home/charlotte";
description = "Charlotte Van Petegem";
extraGroups = [ "wheel" ];
};
};
};
}

BIN
profiles/common/secret.nix Normal file

Binary file not shown.