mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
try adding oracle server config
This commit is contained in:
parent
485e8223cf
commit
d303924f02
@ -68,6 +68,8 @@
|
|||||||
inherit nixpkgs home-manager nur globals wallpapers;
|
inherit nixpkgs home-manager nur globals wallpapers;
|
||||||
};
|
};
|
||||||
wsl = import ./hosts/wsl { inherit nixpkgs wsl home-manager globals; };
|
wsl = import ./hosts/wsl { inherit nixpkgs wsl home-manager globals; };
|
||||||
|
oracle =
|
||||||
|
import ./hosts/oracle { inherit nixpkgs home-manager globals; };
|
||||||
};
|
};
|
||||||
|
|
||||||
darwinConfigurations = with inputs; {
|
darwinConfigurations = with inputs; {
|
||||||
|
@ -1,20 +1,23 @@
|
|||||||
{ nixpkgs, home-manager, globals, ... }:
|
{ nixpkgs, home-manager, globals, ... }:
|
||||||
|
|
||||||
# System configuration for a generic server
|
# System configuration for an Oracle free server
|
||||||
nixpkgs.lib.nixosSystem {
|
nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "aarch64-linux";
|
||||||
specialArgs = { };
|
specialArgs = { };
|
||||||
modules = [
|
modules = [
|
||||||
globals
|
(removeAttrs globals [ "mailServer" ])
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
{
|
{
|
||||||
networking.hostName = "sheep";
|
networking.hostName = "oracle";
|
||||||
gui.enable = false;
|
gui.enable = false;
|
||||||
colorscheme = (import ../../modules/colorscheme/gruvbox);
|
colorscheme = (import ../../modules/colorscheme/gruvbox);
|
||||||
passwordHash =
|
passwordHash =
|
||||||
"$6$PZYiMGmJIIHAepTM$Wx5EqTQ5GApzXx58nvi8azh16pdxrN6Qrv1wunDlzveOgawitWzcIxuj76X9V868fsPi/NOIEO8yVXqwzS9UF.";
|
"$6$PZYiMGmJIIHAepTM$Wx5EqTQ5GApzXx58nvi8azh16pdxrN6Qrv1wunDlzveOgawitWzcIxuj76X9V868fsPi/NOIEO8yVXqwzS9UF.";
|
||||||
|
publicKey =
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+AbmjGEwITk5CK9y7+Rg27Fokgj9QEjgc9wST6MA3s";
|
||||||
}
|
}
|
||||||
../common.nix
|
../common.nix
|
||||||
../../modules/nixos
|
../../modules/nixos
|
||||||
|
../../modules/services/sshd.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user