fix sternchen
This commit is contained in:
parent
0cb3dfd772
commit
f5efe9a4d4
3 changed files with 6 additions and 3 deletions
|
@ -176,7 +176,7 @@
|
|||
modules = modules ++ defaultModules ++ [
|
||||
{
|
||||
_module.args.nixinate = {
|
||||
host = "${name}.private";
|
||||
host = host;
|
||||
sshUser = "root";
|
||||
buildOn = "remote"; # valid args are "local" or "remote"
|
||||
substituteOnTarget = false; # if buildOn is "local" then it will substitute on the target, "-s"
|
||||
|
@ -283,6 +283,7 @@
|
|||
{
|
||||
sternchen = nixosConfigurationSetup {
|
||||
name = "sternchen";
|
||||
host = "sternchen.secret";
|
||||
modules = [
|
||||
nixos-hardware.nixosModules.lenovo-thinkpad-x220
|
||||
#retiolum.nixosModules.retiolum
|
||||
|
|
|
@ -16,13 +16,15 @@
|
|||
networking.hostName = "sternchen";
|
||||
|
||||
components.gui.enable = true;
|
||||
components.gui.kmonad.enable = false;
|
||||
|
||||
components.terminal.enable = true;
|
||||
components.network.enable = true;
|
||||
components.network.wifi.enable = true;
|
||||
components.mainUser.enable = true;
|
||||
users.users.mainUser.extraGroups = [ "adbusers" "video" ];
|
||||
home-manager.users.mainUser.home.git-pull.enable = false;
|
||||
users.users.mainUser.name = "tina";
|
||||
users.users.mainUser.name = lib.mkForce "tina";
|
||||
|
||||
#system.custom.wifi.interfaces = [ "wlp3s0" ];
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
zramSwap = {
|
||||
enable = true;
|
||||
numDevices = 2;
|
||||
#numDevices = 2;
|
||||
swapDevices = 1;
|
||||
memoryPercent = 50;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue