-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Patrizio Bekerle <[email protected]>
- Loading branch information
Showing
43 changed files
with
133 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,10 @@ outputs = | |
# hostname = config.networking.hostName; | ||
# nixosModules = import ./modules { inherit (nixpkgs) lib; }; | ||
commonArgs = { | ||
username = "omega"; | ||
userLogin = "omega"; | ||
userNameLong = "Patrizio Bekerle"; | ||
userNameShort = "Patrizio"; | ||
userEmail = "[email protected]"; | ||
termFontSize = 12.0; | ||
# By default we will use Wayland with Plasma 6 | ||
x11Support = false; | ||
|
@@ -234,7 +237,9 @@ outputs = | |
]; | ||
specialArgs = self.commonArgs // { | ||
inherit inputs; | ||
username = "cow"; | ||
userLogin = "cow"; | ||
userNameLong = "cow"; | ||
userEmail = "cow@cow"; | ||
}; | ||
}; | ||
# Asus Laptop | ||
|
@@ -306,7 +311,9 @@ outputs = | |
]; | ||
specialArgs = self.commonArgs // { | ||
inherit inputs; | ||
username = "dp"; | ||
userLogin = "dp"; | ||
userNameLong = "dp"; | ||
userEmail = "dp@dp"; | ||
}; | ||
}; | ||
# # Home Server miniserver24 for Markus | ||
|
@@ -319,7 +326,7 @@ outputs = | |
# ]; | ||
# specialArgs = self.commonArgs // { | ||
# inherit inputs; | ||
# username = "mba"; | ||
# userLogin = "mba"; | ||
# }; | ||
# }; | ||
# vm-netcup02 = nixpkgs.lib.nixosSystem { | ||
|
@@ -340,7 +347,7 @@ outputs = | |
# ]; | ||
# specialArgs = self.commonArgs // { | ||
# inherit inputs; | ||
# username = "mba"; | ||
# userLogin = "mba"; | ||
# }; | ||
# }; | ||
# # VM Desktop | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# miniserver24 server for Markus | ||
{ modulesPath, config, pkgs, username, ... }: | ||
{ modulesPath, config, pkgs, userLogin, ... }: | ||
|
||
{ | ||
imports = | ||
|
@@ -35,7 +35,7 @@ | |
# No password needed for sudo for wheel group | ||
security.sudo.wheelNeedsPassword = false; | ||
|
||
users.users.${username} = { | ||
users.users.${userLogin} = { | ||
description = "Markus"; | ||
openssh.authorizedKeys.keys = [ | ||
# Markus public key | ||
|
@@ -44,7 +44,7 @@ | |
]; | ||
}; | ||
|
||
home-manager.users.${username} = { | ||
home-manager.users.${userLogin} = { | ||
programs.git = { | ||
userName = "Markus Barta"; | ||
userEmail = "[email protected]"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ config, pkgs, username, ... }: | ||
{ config, pkgs, userLogin, ... }: | ||
|
||
{ | ||
# Enable sound with pipewire. | ||
|
Oops, something went wrong.