1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 19:41:08 +01:00

Setup catullus

This commit is contained in:
Kierán Meinhardt
2019-01-30 13:56:34 +01:00
parent 498215fb07
commit 943d707626
8 changed files with 237 additions and 206 deletions

15
configs/users.nix Normal file
View File

@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
users.mutableUsers = false;
users.users.kfm = {
name = "kfm";
description = config.constants.user.name;
home = "/home/kfm";
createHome = true;
group = "users";
extraGroups = [ "wheel" "audio" "docker" ];
hashedPassword = "$6$w9hXyGFl/.IZBXk$5OiWzS1G.5hImhh1YQmZiCXYNAJhi3X6Y3uSLupJNYYXPLMsQpx2fwF4Xr2uYzGMV8Foqh8TgUavx1APD9rcb/";
shell = pkgs.zsh;
};
}