Migrate penguin to use nix
This commit is contained in:
@@ -344,7 +344,7 @@ in
|
||||
};
|
||||
|
||||
project-nvim = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
enableTelescope = true;
|
||||
};
|
||||
web-devicons.enable = true;
|
||||
|
||||
@@ -15,6 +15,7 @@ in
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.shell.enableNushellIntegration = true;
|
||||
programs = {
|
||||
nushell = {
|
||||
enable = true;
|
||||
@@ -22,7 +23,15 @@ in
|
||||
$env.config.edit_mode = "vi"
|
||||
$env.config.buffer_editor = "nvim"
|
||||
$env.config.show_banner = false
|
||||
'';
|
||||
'';
|
||||
shellAliases = {
|
||||
lg = "lazygit";
|
||||
js = "jj status";
|
||||
jd = "jj diff";
|
||||
jn = "jj new";
|
||||
jf = "jj git fetch";
|
||||
jp = "jj git push";
|
||||
};
|
||||
};
|
||||
nix-your-shell = {
|
||||
enable = true;
|
||||
|
||||
@@ -29,7 +29,7 @@ in
|
||||
users.users = {
|
||||
yadunut = lib.snowfall.mkUser {
|
||||
extraGroups = [ "wheel" ];
|
||||
shell = pkgs.zsh;
|
||||
shell = pkgs.nushell;
|
||||
hashedPassword = "$y$j9T$9ATrmrhedhb.mAZ4//PiN/$OStCOaJHt3kPA63imTG3zLMWCSLoWCUph5O6jl5mcZ.";
|
||||
};
|
||||
root = lib.snowfall.mkUser {
|
||||
|
||||
Reference in New Issue
Block a user