Compare commits

...

2 Commits

Author SHA1 Message Date
chn
c51cdb4fba system.initrd: remove ip=dhcp kernel parameter 2024-08-31 00:16:01 +08:00
chn
b48355b192 packages.nushell: add bin to PATH 2024-08-30 22:56:05 +08:00
2 changed files with 5 additions and 3 deletions

View File

@@ -17,7 +17,11 @@ inputs:
nushell = nushell =
{ {
enable = true; enable = true;
extraConfig = "source ${inputs.topInputs.nu-scripts}/aliases/git/git-aliases.nu"; extraConfig =
''
source ${inputs.topInputs.nu-scripts}/aliases/git/git-aliases.nu
$env.PATH = ($env.PATH | append ~/bin)
'';
}; };
carapace.enable = true; carapace.enable = true;
oh-my-posh = oh-my-posh =

View File

@@ -33,8 +33,6 @@ inputs:
# resolved does not work in initrd, causing network.target to fail # resolved does not work in initrd, causing network.target to fail
services.resolved.enable = false; services.resolved.enable = false;
}; };
# ip=dhcp only attain ipv4
kernelParams = [ "ip=on" ];
}; };
} }
) )