something okay

This commit is contained in:
Sense T 2023-07-04 10:23:34 +00:00
parent c231d50826
commit 390f1c7108
2 changed files with 8 additions and 16 deletions

View File

@ -31,22 +31,7 @@
rustup rustup
nodejs_20 nodejs_20
virtualenv virtualenv
# # Adds the 'hello' command to your environment. It prints a friendly proxychains-ng
# # "Hello, world!" when run.
# pkgs.hello
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
]; ];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage

View File

@ -33,6 +33,13 @@
plugins = [ "sudo" "git" "golang" "thefuck" "kubectl" "pip" "npm" "yarn" "vscode" ]; plugins = [ "sudo" "git" "golang" "thefuck" "kubectl" "pip" "npm" "yarn" "vscode" ];
theme = "fishy"; theme = "fishy";
}; };
profileExtra = ''
# added by Nix installer
if [ -e /home/coder/.nix-profile/etc/profile.d/nix.sh ]; then
. /home/coder/.nix-profile/etc/profile.d/nix.sh
fi
'';
}; };
}; };
} }