1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

chore: only warn when hostkey is missing

This commit is contained in:
oddlama 2023-03-27 16:58:07 +02:00
parent 6c5d117c1e
commit 0bc49cc3f9
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
9 changed files with 34 additions and 16 deletions

View file

@ -2,13 +2,12 @@
imports = [
./modules/uid.nix
#./atuin.nix
#./bash.nix
#./btop.nix
./fish.nix
#./fish.nix
./git.nix
./htop.nix
./neovim
./nushell.nix
#./ssh.nix
./starship.nix
#./tmux.nix
@ -17,7 +16,7 @@
];
home = {
stateVersion = "22.11";
stateVersion = "23.05";
packages = with pkgs; [
bandwhich
btop
@ -26,6 +25,7 @@
neofetch
rclone
ripgrep
rnr
rsync
sd
tree

9
users/common/nushell.nix Normal file
View file

@ -0,0 +1,9 @@
{
lib,
pkgs,
...
}: {
programs.nushell = {
enable = true;
};
}