fix: MarleyNet fixes
This commit is contained in:
parent
1dd2885896
commit
863dc77e3d
6 changed files with 21 additions and 6 deletions
9
homes/x86_64-linux/marley@marleynet/default.nix
Normal file
9
homes/x86_64-linux/marley@marleynet/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{lib, ...}: let
|
||||||
|
inherit (lib.marleyos) enabled;
|
||||||
|
in {
|
||||||
|
marleyos = {
|
||||||
|
bundles.server = enabled;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.stateVersion = "24.05";
|
||||||
|
}
|
|
@ -5,4 +5,6 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
boot.kernelPackages = lib.mkIf (!config.marleyos.isServer) pkgs.linuxPackages_xanmod;
|
boot.kernelPackages = lib.mkIf (!config.marleyos.isServer) pkgs.linuxPackages_xanmod;
|
||||||
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,8 @@ in {
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
marleyos = {
|
marleyos = {
|
||||||
|
isDesktop = lib.mkDefault true;
|
||||||
|
|
||||||
mounts = {
|
mounts = {
|
||||||
automounts = enabled;
|
automounts = enabled;
|
||||||
babeshare = enabled;
|
babeshare = enabled;
|
||||||
|
|
|
@ -11,6 +11,8 @@ in {
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
marleyos = {
|
marleyos = {
|
||||||
|
isServer = lib.mkDefault true;
|
||||||
|
|
||||||
appearance = {
|
appearance = {
|
||||||
base = enabled;
|
base = enabled;
|
||||||
console = enabled;
|
console = enabled;
|
||||||
|
|
|
@ -3,15 +3,18 @@
|
||||||
in {
|
in {
|
||||||
imports = [./hardware-configuration.nix];
|
imports = [./hardware-configuration.nix];
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
|
||||||
|
|
||||||
networking.hostName = "marleynet";
|
networking.hostName = "marleynet";
|
||||||
|
|
||||||
|
marleyos = {
|
||||||
|
bundles.server = enabled;
|
||||||
|
};
|
||||||
|
|
||||||
users.users.marley.openssh.authorizedKeys.keys = [
|
users.users.marley.openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDcKsDGK8C5W6eRsJQSdAOTFVZnkKRWjnyn4iDR8zMi7 marley@nyx"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDcKsDGK8C5W6eRsJQSdAOTFVZnkKRWjnyn4iDR8zMi7 marley@nyx"
|
||||||
|
|
||||||
# iphone
|
# iphone
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+hMOzQBPmi6Rjw7fYvwn43w1Dgk+GEooGPnQz2RTcK Generated By Termius"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+hMOzQBPmi6Rjw7fYvwn43w1Dgk+GEooGPnQz2RTcK Generated By Termius"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
system.stateVersion = "24.05";
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,9 +3,6 @@
|
||||||
in {
|
in {
|
||||||
imports = [./hardware-configuration.nix ./mounts.nix ./autorandr.nix];
|
imports = [./hardware-configuration.nix ./mounts.nix ./autorandr.nix];
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
|
||||||
|
|
||||||
networking.hostName = "nyx";
|
networking.hostName = "nyx";
|
||||||
|
|
||||||
# For local dev.
|
# For local dev.
|
||||||
|
|
Loading…
Reference in a new issue