Add all of iogamaster modules
This commit is contained in:
109
homes/x86_64-linux/julian@aspi-old/default.nix
Normal file
109
homes/x86_64-linux/julian@aspi-old/default.nix
Normal file
@@ -0,0 +1,109 @@
|
||||
{
|
||||
# Snowfall Lib provides a customized `lib` instance with access to your flake's library
|
||||
# as well as the libraries available from your flake's inputs.
|
||||
lib,
|
||||
# An instance of `pkgs` with your overlays and packages applied is also available.
|
||||
pkgs,
|
||||
# You also have access to your flake's inputs.
|
||||
inputs,
|
||||
|
||||
# Additional metadata is provided by Snowfall Lib.
|
||||
namespace, # The namespace used for your flake, defaulting to "internal" if not set.
|
||||
home, # The home architecture for this host (eg. `x86_64-linux`).
|
||||
target, # The Snowfall Lib target for this home (eg. `x86_64-home`).
|
||||
format, # A normalized name for the home target (eg. `home`).
|
||||
virtual, # A boolean to determine whether this home is a virtual target using nixos-generators.
|
||||
host, # The host name for this home.
|
||||
|
||||
# All other arguments come from the home home.
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.username = "julian";
|
||||
home.homeDirectory = "/home/julian";
|
||||
|
||||
modules = {
|
||||
non-nixos.is-nixos = true;
|
||||
shell = {
|
||||
# zsh.enable = true;
|
||||
fish.enable = true;
|
||||
direnv.enable = true;
|
||||
};
|
||||
topgrade.enable = true;
|
||||
neovim.enable = true;
|
||||
alacritty.enable = true;
|
||||
emacs.enable = true;
|
||||
# i3.enable = true;
|
||||
# rofi.enable = true;
|
||||
hyprland.enable = true;
|
||||
nix-helper.enable = true;
|
||||
};
|
||||
|
||||
home.packages =
|
||||
with pkgs;
|
||||
[
|
||||
# Code formatters for use with doom emacs
|
||||
nixfmt-rfc-style # nix
|
||||
dockfmt # docker
|
||||
google-java-format # java
|
||||
|
||||
# Lsps for use with doom emacs
|
||||
# neocmakelsp # cmake
|
||||
|
||||
# Rust setup
|
||||
unstable.rustc
|
||||
unstable.rustfmt
|
||||
unstable.cargo
|
||||
unstable.clippy
|
||||
unstable.rust-analyzer
|
||||
|
||||
# Further tools
|
||||
cntr # nix debugger
|
||||
|
||||
(lib.frajul.my-helper-function lazygit)
|
||||
languagetool
|
||||
# wireguard-tools
|
||||
|
||||
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
|
||||
|
||||
(pkgs.writeShellScriptBin "matlab-paper" ''
|
||||
matlab -desktop -sd "/home/julian/dev/phdthesis/Phase B/mainSimulation" -softwareopengl
|
||||
'')
|
||||
(pkgs.writeShellScriptBin "matlab-robotik" ''
|
||||
matlab -desktop -sd "/home/julian/nas-sync/Studium/Vorlesungen-Master/ss24/Robotik2" -softwareopengl
|
||||
'')
|
||||
(pkgs.writeShellScriptBin "matlab-gram" ''
|
||||
export GTK_PATH=/usr/lib/gtk-3.0
|
||||
nix shell nixpkgs#gcc11 --command matlab -desktop -sd "/home/julian/dev/matlab-gram" -softwareopengl
|
||||
'')
|
||||
|
||||
zotero
|
||||
xfce.mousepad
|
||||
tor-browser
|
||||
wl-clipboard
|
||||
|
||||
## My scripts
|
||||
pkgs.frajul.deploy-to-pianopi
|
||||
pkgs.frajul.edit-config
|
||||
pkgs.frajul.open-messaging
|
||||
]
|
||||
++ lib.lists.concatMap (packages-list-file: import packages-list-file { inherit pkgs; }) [
|
||||
./fonts.nix
|
||||
./packages.nix
|
||||
];
|
||||
|
||||
services.gammastep = {
|
||||
enable = true;
|
||||
latitude = 47.92;
|
||||
longitude = 10.12;
|
||||
provider = "manual";
|
||||
};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
# ======================== DO NOT CHANGE THIS ========================
|
||||
home.stateVersion = "23.11";
|
||||
# ======================== DO NOT CHANGE THIS ========================
|
||||
}
|
14
homes/x86_64-linux/julian@aspi-old/fonts.nix
Normal file
14
homes/x86_64-linux/julian@aspi-old/fonts.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
font-awesome
|
||||
dejavu_fonts
|
||||
noto-fonts
|
||||
noto-fonts-cjk
|
||||
noto-fonts-emoji
|
||||
liberation_ttf
|
||||
fira-code
|
||||
fira-code-symbols
|
||||
source-code-pro
|
||||
]
|
171
homes/x86_64-linux/julian@aspi-old/packages.nix
Normal file
171
homes/x86_64-linux/julian@aspi-old/packages.nix
Normal file
@@ -0,0 +1,171 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
with pkgs;
|
||||
[
|
||||
|
||||
shellcheck
|
||||
|
||||
# Rust setup
|
||||
rustc
|
||||
rustfmt
|
||||
cargo
|
||||
clippy
|
||||
rust-analyzer
|
||||
|
||||
# Further tools
|
||||
lazygit
|
||||
languagetool
|
||||
|
||||
# makemkv
|
||||
audacity
|
||||
gnome.cheese
|
||||
zoom-us
|
||||
qutebrowser
|
||||
|
||||
unetbootin
|
||||
|
||||
# For SSS exercises
|
||||
pwndbg
|
||||
gcc
|
||||
hexedit
|
||||
|
||||
# rfid reader tests
|
||||
openct
|
||||
opensc
|
||||
pcsclite
|
||||
pcsctools
|
||||
ccid
|
||||
libnfc
|
||||
|
||||
xournalpp
|
||||
path-of-building
|
||||
|
||||
xfce.thunar-archive-plugin
|
||||
zip
|
||||
p7zip # unzip 7zip archives
|
||||
imagemagick
|
||||
firefox
|
||||
thunderbird
|
||||
nextcloud-client
|
||||
qalculate-gtk
|
||||
libqalculate
|
||||
|
||||
# schildichat-desktop # not updated regularly
|
||||
element-desktop
|
||||
tdesktop # telegram
|
||||
|
||||
tealdeer
|
||||
gcolor2 # gcolor3 does not work
|
||||
# cups
|
||||
wget
|
||||
nodejs
|
||||
git
|
||||
dotter
|
||||
mc
|
||||
broot
|
||||
rnr # renaming tool in rust
|
||||
doublecmd
|
||||
mucommander
|
||||
tree
|
||||
wezterm
|
||||
kitty
|
||||
bat
|
||||
ripgrep
|
||||
fd
|
||||
fzf
|
||||
topgrade
|
||||
|
||||
arandr
|
||||
# wireguard-tools
|
||||
htop
|
||||
texlive.combined.scheme-full
|
||||
texlab
|
||||
usbutils # lsusb
|
||||
pciutils # lspci
|
||||
|
||||
gnome.gnome-keyring
|
||||
gnome.seahorse
|
||||
polkit_gnome
|
||||
nix-index
|
||||
python3
|
||||
libnotify
|
||||
libclang
|
||||
libreoffice
|
||||
killall
|
||||
findutils
|
||||
xorg.xkill
|
||||
unzip
|
||||
vlc
|
||||
handbrake
|
||||
nmap
|
||||
jq
|
||||
jdk
|
||||
# emacsPackages.clang-format # formatting for java
|
||||
gradle
|
||||
maven
|
||||
android-tools
|
||||
scrcpy
|
||||
# dvdisaster
|
||||
mate.engrampa
|
||||
# toybox
|
||||
unixtools.procps
|
||||
qpdfview
|
||||
ffmpeg
|
||||
links2
|
||||
julia-bin
|
||||
xdg-desktop-portal-gtk
|
||||
discord
|
||||
lnav # log analyzing tool
|
||||
fdupes # find and delete duplicate files
|
||||
digikam
|
||||
dbeaver-bin
|
||||
pavucontrol
|
||||
sqlite
|
||||
|
||||
nomacs
|
||||
rocketchat-desktop
|
||||
# zotero
|
||||
inkscape
|
||||
pulseaudio
|
||||
gcolor3
|
||||
geogebra
|
||||
|
||||
languagetool
|
||||
xclip
|
||||
okular # Pdf reader with many features, good for commenting documents
|
||||
evince # Simple pdf reader, good for focusing on document content
|
||||
pdfsam-basic # Split, merge, etc for pdfs
|
||||
|
||||
poppler_utils # Pdf utils including pdfimages
|
||||
matlab # Using nix-matlab overlay defined in flake
|
||||
# sage
|
||||
|
||||
gimp
|
||||
|
||||
devbox
|
||||
parted
|
||||
drawio
|
||||
du-dust # Like du tree but better
|
||||
gnupg
|
||||
rpi-imager
|
||||
|
||||
wine
|
||||
winetricks
|
||||
|
||||
# lf
|
||||
rustdesk
|
||||
# realvnc-vnc-viewer
|
||||
calibre
|
||||
|
||||
audible-cli
|
||||
|
||||
# cudaPackages.cudatoolkit
|
||||
# openmvg
|
||||
# colmapWithCuda
|
||||
path-of-building
|
||||
|
||||
## My scripts
|
||||
frajul.edit-config
|
||||
|
||||
nheko
|
||||
]
|
Reference in New Issue
Block a user