add(nix): oracle cloud

This commit is contained in:
Léana 江 2024-01-01 19:44:50 +01:00 committed by Léana 江
parent 50d1f9dea2
commit 802d4e7f14
3 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ pkgs, unstable, ... }: {
programs.home-manager.enable = true;
imports = [ ./dev.nix ];
home = {
username = "leana";
homeDirectory = "/home/opc";
stateVersion = "23.11";
};
home.packages = with pkgs; [
# shell and script dependencies
fish
figlet
gnused
starship
stow
ripgrep
fd
fzf
vivid
# utils
btop
tree
rsync
tldr
];
}