Formatting changes and added dynamic home-manager username
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
{ inputs, config, pkgs, ... }: {
|
||||
{ inputs, config, pkgs, user, ... }: {
|
||||
|
||||
home = {
|
||||
username = "random";
|
||||
homeDirectory = "/home/random";
|
||||
username = "${user}";
|
||||
homeDirectory = "/home/${user}";
|
||||
};
|
||||
|
||||
imports = [
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{ inputs, config, pkgs, ... }: {
|
||||
{ inputs, config, pkgs, user, ... }: {
|
||||
|
||||
home = {
|
||||
username = "random";
|
||||
homeDirectory = "/home/random";
|
||||
username = "${user}";
|
||||
homeDirectory = "/home/${user}";
|
||||
};
|
||||
|
||||
imports = [
|
||||
|
||||
Reference in New Issue
Block a user