Initial commit
This commit is contained in:
commit
4256a94080
22 changed files with 1179 additions and 0 deletions
38
profiles/common/default.nix
Normal file
38
profiles/common/default.nix
Normal 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
BIN
profiles/common/secret.nix
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue