add ssh for server, add vscodium for pc, refactor hostnames
This commit is contained in:
parent
b06525436b
commit
f174b610d8
7 changed files with 55 additions and 8 deletions
|
@ -2,6 +2,8 @@
|
|||
{
|
||||
imports = [ ./hardware-configuration.nix ];
|
||||
|
||||
networking.hostName = "chris-laptop";
|
||||
|
||||
modules = {
|
||||
themes = {
|
||||
enable = true;
|
||||
|
@ -38,4 +40,3 @@
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
options = [ "rw" "uid=chris" ];
|
||||
};
|
||||
|
||||
networking.hostName = "chris-pc";
|
||||
|
||||
modules = {
|
||||
themes = {
|
||||
enable = true;
|
||||
|
@ -54,6 +56,7 @@
|
|||
|
||||
editors = {
|
||||
default = "nano";
|
||||
vscodium.enable = true;
|
||||
zed.enable = true;
|
||||
nvim.enable = true;
|
||||
nano.enable = true;
|
||||
|
@ -72,4 +75,3 @@
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
fsType = "ext4";
|
||||
};
|
||||
|
||||
networking.hostName = "chris-server";
|
||||
|
||||
modules = {
|
||||
themes = {
|
||||
enable = true;
|
||||
|
@ -15,6 +17,7 @@
|
|||
};
|
||||
|
||||
networking.enable = true;
|
||||
networking.ssh.enable = true;
|
||||
|
||||
services = {
|
||||
enable = true;
|
||||
|
@ -43,4 +46,3 @@
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
{
|
||||
imports = [ ./hardware-configuration.nix ];
|
||||
|
||||
networking.hostName = "mam-laptop";
|
||||
|
||||
modules = {
|
||||
themes = {
|
||||
enable = true;
|
||||
|
@ -37,4 +39,3 @@
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
18
modules/desktop/editors/vscodium.nix
Normal file
18
modules/desktop/editors/vscodium.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ config, options, lib, pkgs, ... }:
|
||||
let
|
||||
inherit (lib.meta) getExe;
|
||||
inherit (lib.modules) mkIf;
|
||||
|
||||
cfg = config.modules.desktop.editors.vscodium;
|
||||
in
|
||||
{
|
||||
options.modules.desktop.editors.vscodium = let
|
||||
inherit (lib.options) mkEnableOption;
|
||||
in { enable = mkEnableOption "vscodium"; };
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
user.packages = attrValues {
|
||||
inherit (pkgs) vscodium;
|
||||
};
|
||||
};
|
||||
}
|
27
modules/networking/ssh.nix
Normal file
27
modules/networking/ssh.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ config, options, lib, pkgs, ... }:
|
||||
let
|
||||
inherit (lib.modules) mkIf;
|
||||
in
|
||||
{
|
||||
options.modules.networking.ssh = let
|
||||
inherit (lib.options) mkEnableOption;
|
||||
in {
|
||||
enable = mkEnableOption "enable ssh";
|
||||
};
|
||||
|
||||
config = mkIf config.modules.networking.ssh.enable {
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
ports = [ 22 ];
|
||||
settings = {
|
||||
PassswordAuthentication = true;
|
||||
AllowUsers = [ "chris", "root" ];
|
||||
UseDns = true;
|
||||
UsePAM = true;
|
||||
PermitRootLogin = "prohibit-password";
|
||||
PermitEmptyPasswords = "no";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,7 +1,3 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
networking = {
|
||||
hostName = "chris-pc";
|
||||
networkmanager.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue