no clue really
This commit is contained in:
@@ -11,4 +11,3 @@
|
||||
./ssh.nix
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
@@ -1,14 +1,13 @@
|
||||
{
|
||||
inputs,
|
||||
username,
|
||||
...
|
||||
}:
|
||||
{ inputs, username, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [inputs.hjem.nixosModules.default];
|
||||
imports = [
|
||||
inputs.hjem.nixosModules.default
|
||||
(lib.modules.mkAliasOptionModule ["hj"] ["hjem" "users" username])
|
||||
];
|
||||
|
||||
config.hjem = {
|
||||
extraModules = [inputs.hjem-rum.hjemModules.default];
|
||||
extraModules = [ inputs.hjem-rum.hjemModules.default ];
|
||||
|
||||
users.${username} = {
|
||||
enable = true;
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
wl-clipboard
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ pkgs, lib, ... }:
|
||||
_:
|
||||
{
|
||||
programs.zsh.enable = true;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
_:
|
||||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
|
||||
@@ -1,3 +1 @@
|
||||
{
|
||||
time.timeZone = "America/Chicago";
|
||||
}
|
||||
{ time.timeZone = "America/Chicago"; }
|
||||
|
||||
@@ -1,17 +1,10 @@
|
||||
{
|
||||
username,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{ username, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.${username} = {
|
||||
isNormalUser = true;
|
||||
description = "${username}";
|
||||
#group = "${username}";
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
];
|
||||
extraGroups = [ "wheel" ];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
nix.settings.allowed-users = [ "@wheel" ];
|
||||
|
||||
Reference in New Issue
Block a user