-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
82 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ pkgs }: | ||
let | ||
ecspresso = pkgs.callPackage ../nixpkgs/ecspresso { }; | ||
isucrud = pkgs.callPackage ../nixpkgs/isucrud { }; | ||
mitamae = pkgs.callPackage ../pkgs/mitamae { }; | ||
in with pkgs; [ | ||
# for util tools | ||
awscli | ||
ecspresso | ||
ffmpeg | ||
gibo | ||
graphviz | ||
iftop | ||
imagemagick | ||
isucrud | ||
mitamae | ||
ncurses | ||
neofetch | ||
offlineimap | ||
speedtest-cli | ||
tcpdump | ||
|
||
# for editor | ||
cmigemo | ||
editorconfig-core-c | ||
nano | ||
tree-sitter | ||
(tree-sitter.withPlugins (p: builtins.attrValues p)) | ||
|
||
# for shell | ||
zx | ||
|
||
# for DB | ||
redis | ||
mysql | ||
sqlite | ||
sqldef | ||
|
||
# for jokes | ||
asciiquarium | ||
cmatrix | ||
sl | ||
silicon | ||
genact | ||
|
||
# for ai | ||
ollama | ||
|
||
# for emacs | ||
mu | ||
emacsPackages.mu4e | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
{ self, nixpkgs, home-manager, emacs-overlay, nix-on-droid }: { | ||
OPPO-A79 = nix-on-droid.lib.nixOnDroidConfiguration { | ||
modules = [ ./nix-on-droid.nix ]; | ||
|
||
# home-manager.config = { pkgs }: | ||
# { | ||
|
||
# }; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,16 @@ | ||
{ config, lib, pkgs }: { | ||
# Simply install just the packages | ||
environment.packages = with pkgs; | ||
[ | ||
# User-facing stuff that you really really want to have | ||
vim # or some other editor, e.g. nano or neovim | ||
|
||
# Some common stuff that people expect to have | ||
#procps | ||
#killall | ||
#diffutils | ||
#findutils | ||
#utillinux | ||
#tzdata | ||
#hostname | ||
#man | ||
#gnugrep | ||
#gnupg | ||
#gnused | ||
#gnutar | ||
#bzip2 | ||
#gzip | ||
#xz | ||
#zip | ||
#unzip | ||
]; | ||
|
||
# Backup etc files instead of failing to activate generation if a file already exists in /etc | ||
environment.etcBackupExtension = ".bak"; | ||
|
||
# Read the changelog before changing this value | ||
system.stateVersion = "23.11"; | ||
|
||
# Set up nix for flakes | ||
nix.extraOptions = '' | ||
experimental-features = nix-command flakes | ||
''; | ||
|
||
# Set your time zone | ||
#time.timeZone = "Europe/Berlin"; | ||
time.timeZone = "Asia/Tokyo"; | ||
|
||
# home-manager = { | ||
# config = ../../home-manager; | ||
# backupFileExtension = "hm-bak"; | ||
# useGlobalPkgs = true; | ||
# }; | ||
} |