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.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
}
|
||||
|
|
|
@ -11,6 +11,8 @@ in {
|
|||
|
||||
config = lib.mkIf cfg.enable {
|
||||
marleyos = {
|
||||
isDesktop = lib.mkDefault true;
|
||||
|
||||
mounts = {
|
||||
automounts = enabled;
|
||||
babeshare = enabled;
|
||||
|
|
|
@ -11,6 +11,8 @@ in {
|
|||
|
||||
config = lib.mkIf cfg.enable {
|
||||
marleyos = {
|
||||
isServer = lib.mkDefault true;
|
||||
|
||||
appearance = {
|
||||
base = enabled;
|
||||
console = enabled;
|
||||
|
|
|
@ -3,15 +3,18 @@
|
|||
in {
|
||||
imports = [./hardware-configuration.nix];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = "marleynet";
|
||||
|
||||
marleyos = {
|
||||
bundles.server = enabled;
|
||||
};
|
||||
|
||||
users.users.marley.openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDcKsDGK8C5W6eRsJQSdAOTFVZnkKRWjnyn4iDR8zMi7 marley@nyx"
|
||||
|
||||
# iphone
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+hMOzQBPmi6Rjw7fYvwn43w1Dgk+GEooGPnQz2RTcK Generated By Termius"
|
||||
];
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
|
|
|
@ -3,9 +3,6 @@
|
|||
in {
|
||||
imports = [./hardware-configuration.nix ./mounts.nix ./autorandr.nix];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = "nyx";
|
||||
|
||||
# For local dev.
|
||||
|
|
Loading…
Reference in a new issue