├── .gitignore ├── .gitmodules ├── README.md ├── TODO.md ├── config ├── .clojure │ └── deps.edn ├── .emacs.d │ ├── config │ │ ├── backup.el │ │ ├── clojure.el │ │ ├── config.el │ │ ├── elisp.el │ │ ├── haskell.el │ │ ├── java-lang.el │ │ ├── jw-completion.el │ │ ├── jw-gpt.el │ │ ├── keys.el │ │ ├── lisp.el │ │ ├── modeline.el │ │ ├── nix-lang.el │ │ ├── org-custom.el │ │ ├── osx.el │ │ ├── package-manager.el │ │ ├── python-lang.el │ │ ├── scala.el │ │ ├── theme.el │ │ ├── typescript.el │ │ ├── version-control.el │ │ └── yaml-lang.el │ ├── desktop │ │ └── .keep │ └── init.el ├── .inputrc ├── .lein │ └── profiles.clj ├── .sbt │ ├── 0.13 │ │ └── plugins │ │ │ └── plugins.sbt │ └── 1.0 │ │ └── plugins │ │ └── plugins.sbt ├── .user-dirs.dirs ├── emacs.nix ├── git.nix ├── home.nix ├── nixpkgs.nix ├── repos.nix ├── shell.nix ├── terminal.nix ├── vmware-preferences ├── vmware-preferences.old └── wm.nix ├── darwin ├── DefaultKeyBinding.dict ├── audio.nix ├── bootstrap.sh ├── clipcat.nix ├── configuration.nix ├── home.nix ├── homebrew.nix ├── keyboard-to-nix.sh ├── keyboard.nix ├── taskfile.yaml └── wm.nix ├── disk └── vmware-fusion.nix ├── flake.lock ├── flake.nix ├── hardware ├── lxc.nix ├── macbook-air.nix ├── vmware-fusion-arm.nix └── vmware-fusion.nix ├── hosts ├── cesare.nix ├── drw-lxc.nix ├── drw-vmware.nix ├── harpocrates.nix ├── nylmd-jwaggon1.nix ├── optum.nix ├── rally.nix ├── salome.nix └── tosca.nix ├── lxc ├── lxc-bootstrap.nix ├── lxc.sh ├── lxd-preseed-shared-network.yaml ├── lxd-preseed.yaml └── network-none ├── modules ├── gui.nix ├── networking.nix ├── nixpkgs.nix ├── settings.nix ├── sound.nix ├── ssh.nix ├── user.nix ├── virtualization.nix └── vmware-guest.nix ├── nixos ├── configuration-flake.nix └── configuration.nix ├── pkgs ├── aarch64.nix ├── albert │ ├── bundle-fixes.patch │ ├── compiled.nix │ └── default.nix ├── autoraise │ └── default.nix ├── aws-okta │ └── default.nix ├── carve │ └── default.nix ├── default.nix ├── geosanslight │ └── default.nix ├── inconsolata-unstable │ └── default.nix ├── swipe-aerospace │ └── default.nix └── term-do │ └── default.nix ├── taskfile.yaml ├── vm └── taskfile.yaml └── xkb ├── macbook-modified.xkb ├── macbook-plain.xkb ├── ubuntu-thinkpad.xkb └── vm.xkb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/TODO.md -------------------------------------------------------------------------------- /config/.clojure/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.clojure/deps.edn -------------------------------------------------------------------------------- /config/.emacs.d/config/backup.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/backup.el -------------------------------------------------------------------------------- /config/.emacs.d/config/clojure.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/clojure.el -------------------------------------------------------------------------------- /config/.emacs.d/config/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/config.el -------------------------------------------------------------------------------- /config/.emacs.d/config/elisp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/elisp.el -------------------------------------------------------------------------------- /config/.emacs.d/config/haskell.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/haskell.el -------------------------------------------------------------------------------- /config/.emacs.d/config/java-lang.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/java-lang.el -------------------------------------------------------------------------------- /config/.emacs.d/config/jw-completion.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/jw-completion.el -------------------------------------------------------------------------------- /config/.emacs.d/config/jw-gpt.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/jw-gpt.el -------------------------------------------------------------------------------- /config/.emacs.d/config/keys.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/keys.el -------------------------------------------------------------------------------- /config/.emacs.d/config/lisp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/lisp.el -------------------------------------------------------------------------------- /config/.emacs.d/config/modeline.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/modeline.el -------------------------------------------------------------------------------- /config/.emacs.d/config/nix-lang.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/nix-lang.el -------------------------------------------------------------------------------- /config/.emacs.d/config/org-custom.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/org-custom.el -------------------------------------------------------------------------------- /config/.emacs.d/config/osx.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/osx.el -------------------------------------------------------------------------------- /config/.emacs.d/config/package-manager.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/package-manager.el -------------------------------------------------------------------------------- /config/.emacs.d/config/python-lang.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/python-lang.el -------------------------------------------------------------------------------- /config/.emacs.d/config/scala.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/scala.el -------------------------------------------------------------------------------- /config/.emacs.d/config/theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/theme.el -------------------------------------------------------------------------------- /config/.emacs.d/config/typescript.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/typescript.el -------------------------------------------------------------------------------- /config/.emacs.d/config/version-control.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/version-control.el -------------------------------------------------------------------------------- /config/.emacs.d/config/yaml-lang.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/config/yaml-lang.el -------------------------------------------------------------------------------- /config/.emacs.d/desktop/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/.emacs.d/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.emacs.d/init.el -------------------------------------------------------------------------------- /config/.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.inputrc -------------------------------------------------------------------------------- /config/.lein/profiles.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.lein/profiles.clj -------------------------------------------------------------------------------- /config/.sbt/0.13/plugins/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.sbt/0.13/plugins/plugins.sbt -------------------------------------------------------------------------------- /config/.sbt/1.0/plugins/plugins.sbt: -------------------------------------------------------------------------------- 1 | addDependencyTreePlugin 2 | -------------------------------------------------------------------------------- /config/.user-dirs.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/.user-dirs.dirs -------------------------------------------------------------------------------- /config/emacs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/emacs.nix -------------------------------------------------------------------------------- /config/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/git.nix -------------------------------------------------------------------------------- /config/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/home.nix -------------------------------------------------------------------------------- /config/nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/nixpkgs.nix -------------------------------------------------------------------------------- /config/repos.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/repos.nix -------------------------------------------------------------------------------- /config/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/shell.nix -------------------------------------------------------------------------------- /config/terminal.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/terminal.nix -------------------------------------------------------------------------------- /config/vmware-preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/vmware-preferences -------------------------------------------------------------------------------- /config/vmware-preferences.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/vmware-preferences.old -------------------------------------------------------------------------------- /config/wm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/config/wm.nix -------------------------------------------------------------------------------- /darwin/DefaultKeyBinding.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/DefaultKeyBinding.dict -------------------------------------------------------------------------------- /darwin/audio.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/audio.nix -------------------------------------------------------------------------------- /darwin/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/bootstrap.sh -------------------------------------------------------------------------------- /darwin/clipcat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/clipcat.nix -------------------------------------------------------------------------------- /darwin/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/configuration.nix -------------------------------------------------------------------------------- /darwin/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/home.nix -------------------------------------------------------------------------------- /darwin/homebrew.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/homebrew.nix -------------------------------------------------------------------------------- /darwin/keyboard-to-nix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/keyboard-to-nix.sh -------------------------------------------------------------------------------- /darwin/keyboard.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/keyboard.nix -------------------------------------------------------------------------------- /darwin/taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/taskfile.yaml -------------------------------------------------------------------------------- /darwin/wm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/darwin/wm.nix -------------------------------------------------------------------------------- /disk/vmware-fusion.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/disk/vmware-fusion.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/flake.nix -------------------------------------------------------------------------------- /hardware/lxc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hardware/lxc.nix -------------------------------------------------------------------------------- /hardware/macbook-air.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hardware/macbook-air.nix -------------------------------------------------------------------------------- /hardware/vmware-fusion-arm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hardware/vmware-fusion-arm.nix -------------------------------------------------------------------------------- /hardware/vmware-fusion.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hardware/vmware-fusion.nix -------------------------------------------------------------------------------- /hosts/cesare.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hosts/cesare.nix -------------------------------------------------------------------------------- /hosts/drw-lxc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hosts/drw-lxc.nix -------------------------------------------------------------------------------- /hosts/drw-vmware.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hosts/drw-vmware.nix -------------------------------------------------------------------------------- /hosts/harpocrates.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hosts/harpocrates.nix -------------------------------------------------------------------------------- /hosts/nylmd-jwaggon1.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hosts/nylmd-jwaggon1.nix -------------------------------------------------------------------------------- /hosts/optum.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hosts/optum.nix -------------------------------------------------------------------------------- /hosts/rally.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hosts/rally.nix -------------------------------------------------------------------------------- /hosts/salome.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hosts/salome.nix -------------------------------------------------------------------------------- /hosts/tosca.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/hosts/tosca.nix -------------------------------------------------------------------------------- /lxc/lxc-bootstrap.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/lxc/lxc-bootstrap.nix -------------------------------------------------------------------------------- /lxc/lxc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/lxc/lxc.sh -------------------------------------------------------------------------------- /lxc/lxd-preseed-shared-network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/lxc/lxd-preseed-shared-network.yaml -------------------------------------------------------------------------------- /lxc/lxd-preseed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/lxc/lxd-preseed.yaml -------------------------------------------------------------------------------- /lxc/network-none: -------------------------------------------------------------------------------- 1 | lxc.net.0.type=none 2 | -------------------------------------------------------------------------------- /modules/gui.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/modules/gui.nix -------------------------------------------------------------------------------- /modules/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/modules/networking.nix -------------------------------------------------------------------------------- /modules/nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/modules/nixpkgs.nix -------------------------------------------------------------------------------- /modules/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/modules/settings.nix -------------------------------------------------------------------------------- /modules/sound.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/modules/sound.nix -------------------------------------------------------------------------------- /modules/ssh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/modules/ssh.nix -------------------------------------------------------------------------------- /modules/user.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/modules/user.nix -------------------------------------------------------------------------------- /modules/virtualization.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/modules/virtualization.nix -------------------------------------------------------------------------------- /modules/vmware-guest.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/modules/vmware-guest.nix -------------------------------------------------------------------------------- /nixos/configuration-flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/nixos/configuration-flake.nix -------------------------------------------------------------------------------- /nixos/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/nixos/configuration.nix -------------------------------------------------------------------------------- /pkgs/aarch64.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/aarch64.nix -------------------------------------------------------------------------------- /pkgs/albert/bundle-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/albert/bundle-fixes.patch -------------------------------------------------------------------------------- /pkgs/albert/compiled.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/albert/compiled.nix -------------------------------------------------------------------------------- /pkgs/albert/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/albert/default.nix -------------------------------------------------------------------------------- /pkgs/autoraise/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/autoraise/default.nix -------------------------------------------------------------------------------- /pkgs/aws-okta/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/aws-okta/default.nix -------------------------------------------------------------------------------- /pkgs/carve/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/carve/default.nix -------------------------------------------------------------------------------- /pkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/default.nix -------------------------------------------------------------------------------- /pkgs/geosanslight/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/geosanslight/default.nix -------------------------------------------------------------------------------- /pkgs/inconsolata-unstable/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/inconsolata-unstable/default.nix -------------------------------------------------------------------------------- /pkgs/swipe-aerospace/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/swipe-aerospace/default.nix -------------------------------------------------------------------------------- /pkgs/term-do/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/pkgs/term-do/default.nix -------------------------------------------------------------------------------- /taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/taskfile.yaml -------------------------------------------------------------------------------- /vm/taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/vm/taskfile.yaml -------------------------------------------------------------------------------- /xkb/macbook-modified.xkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/xkb/macbook-modified.xkb -------------------------------------------------------------------------------- /xkb/macbook-plain.xkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/xkb/macbook-plain.xkb -------------------------------------------------------------------------------- /xkb/ubuntu-thinkpad.xkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/xkb/ubuntu-thinkpad.xkb -------------------------------------------------------------------------------- /xkb/vm.xkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloc47/config/HEAD/xkb/vm.xkb --------------------------------------------------------------------------------