settings for the NVME baremetal install
This commit is contained in:
parent
06a03c8abe
commit
16bff540f8
@ -3,58 +3,51 @@ let
|
|||||||
VERSION = "22.11";
|
VERSION = "22.11";
|
||||||
# HOME-MANAGER = builtins.fetchTarball
|
# HOME-MANAGER = builtins.fetchTarball
|
||||||
# "https://github.com/nix-community/home-manager/archive/master.tar.gz";
|
# "https://github.com/nix-community/home-manager/archive/master.tar.gz";
|
||||||
UNSTABLE_TARBALL = builtins.fetchTarball
|
UNSTABLE_TARBALL =
|
||||||
https://github.com/nixos/nixpkgs/tarball/master;
|
builtins.fetchTarball "https://github.com/nixos/nixpkgs/tarball/master";
|
||||||
unstable = import UNSTABLE_TARBALL {
|
unstable = import UNSTABLE_TARBALL { config = config.nixpkgs.config; };
|
||||||
config = config.nixpkgs.config;
|
in { # Remember to close this bracket at the end of the document
|
||||||
};
|
|
||||||
in
|
|
||||||
{ # Remember to close this bracket at the end of the document
|
|
||||||
|
|
||||||
imports = [
|
imports = [ ./hardware-configuration.nix <home-manager/nixos> ];
|
||||||
./hardware-configuration.nix
|
|
||||||
<home-manager/nixos>
|
|
||||||
];
|
|
||||||
|
|
||||||
networking.hostName = "workstation";
|
networking.hostName = "workstation";
|
||||||
|
|
||||||
# networking.wireless.enable = true;
|
# networking.wireless.enable = true;
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
time.timeZone = "America/Mexico_City";
|
time.timeZone = "America/Mexico_City";
|
||||||
|
|
||||||
i18n = {
|
i18n = {
|
||||||
defaultLocale = "en_CA.UTF-8";
|
defaultLocale = "en_CA.UTF-8";
|
||||||
extraLocaleSettings = {
|
extraLocaleSettings = { LC_MONETARY = "es_MX.UTF-8"; };
|
||||||
LC_MONETARY = "es_MX.UTF-8";
|
|
||||||
};
|
};
|
||||||
};
|
console = {
|
||||||
console = {
|
|
||||||
font = "Lat2-Terminus16";
|
font = "Lat2-Terminus16";
|
||||||
keyMap = "us";
|
keyMap = "us";
|
||||||
# useXkbConfig = true; # use xkbOptions in tty.
|
# useXkbConfig = true; # use xkbOptions in tty.
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
xserver = {
|
xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
videoDrivers = [ "nvidia" ];
|
videoDrivers = [ "nvidia" ];
|
||||||
displayManager.gdm.enable = true;
|
displayManager.gdm.enable = true;
|
||||||
desktopManager.gnome.enable = true;
|
desktopManager.gnome.enable = true;
|
||||||
|
# wacom.enable = true;
|
||||||
layout = "us";
|
layout = "us";
|
||||||
libinput.enable = true; # Wacom required?
|
libinput.enable = true; # Wacom required?
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.gnome.excludePackages = (with pkgs; [
|
environment.gnome.excludePackages = (with pkgs; [
|
||||||
gnome-photos
|
gnome-photos
|
||||||
gnome-tour
|
gnome-tour
|
||||||
gnome-text-editor
|
gnome-text-editor
|
||||||
gnome-connections
|
gnome-connections
|
||||||
|
# gnome-shell-extensions
|
||||||
baobab
|
baobab
|
||||||
])
|
]) ++ (with pkgs.gnome; [
|
||||||
++ (with pkgs.gnome; [
|
# totem
|
||||||
totem
|
|
||||||
gedit
|
gedit
|
||||||
gnome-music
|
gnome-music
|
||||||
epiphany
|
epiphany
|
||||||
@ -62,184 +55,188 @@ environment.gnome.excludePackages = (with pkgs; [
|
|||||||
yelp
|
yelp
|
||||||
simple-scan
|
simple-scan
|
||||||
gnome-font-viewer
|
gnome-font-viewer
|
||||||
]);
|
]);
|
||||||
|
|
||||||
hardware.pulseaudio.enable = false;
|
hardware.pulseaudio.enable = false;
|
||||||
sound.enable = false;
|
sound.enable = false;
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
alsa.enable = true;
|
alsa.enable = true;
|
||||||
alsa.support32Bit = true;
|
alsa.support32Bit = true;
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
security.sudo = {
|
security.sudo = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wheelNeedsPassword = false;
|
wheelNeedsPassword = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
# security.sudo.enable = false;
|
# security.sudo.enable = false;
|
||||||
# security.doas.enable = true;
|
# security.doas.enable = true;
|
||||||
# security.doas.extraRules = [{
|
# security.doas.extraRules = [{
|
||||||
# users = [ "jawz" ];
|
# users = [ "jawz" ];
|
||||||
# keepEnv = true;
|
# keepEnv = true;
|
||||||
# #persist = true;
|
# #persist = true;
|
||||||
# noPass = true;
|
# noPass = true;
|
||||||
# }];
|
# }];
|
||||||
|
|
||||||
nixpkgs.config = {
|
nixpkgs.config = { allowUnfree = true; };
|
||||||
allowUnfree = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
users.users.jawz = {
|
users.users.jawz = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "networkmanager" "docker" ];
|
extraGroups = [ "wheel" "networkmanager" "docker" ];
|
||||||
initialPassword = "password";
|
initialPassword = "password";
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
packages = (with pkgs; [
|
packages = (with pkgs; [
|
||||||
|
|
||||||
blender # cgi animation and sculpting
|
blender # cgi animation and sculpting
|
||||||
godot # game development
|
godot # game development
|
||||||
unstable.gdtoolkit # gdscript language server
|
unstable.gdtoolkit # gdscript language server
|
||||||
krita # art to your heart desire!
|
krita # art to your heart desire!
|
||||||
drawpile # arty party with friends!!
|
drawpile # arty party with friends!!
|
||||||
mypaint # not the best art program
|
mypaint # not the best art program
|
||||||
mypaint-brushes # but it's got some
|
mypaint-brushes # but it's got some
|
||||||
mypaint-brushes1 # nice damn brushes
|
mypaint-brushes1 # nice damn brushes
|
||||||
unstable.pureref # create inspiration/reference boards
|
unstable.pureref # create inspiration/reference boards
|
||||||
unstable.gimp # the coolest bestest art program to never exist
|
unstable.gimp # the coolest bestest art program to never exist
|
||||||
|
|
||||||
lutris # game/emulator manager
|
lutris # game/emulator manager
|
||||||
# grapejuice # roblox manager
|
# grapejuice # roblox manager
|
||||||
minecraft # minecraft official launcher
|
minecraft # minecraft official launcher
|
||||||
parsec-bin # remote gaming with friends
|
parsec-bin # remote gaming with friends
|
||||||
unstable.protonup-qt # update proton-ge
|
unstable.protonup-qt # update proton-ge
|
||||||
|
|
||||||
libreoffice-fresh # office, but based
|
libreoffice-fresh # office, but based
|
||||||
calibre # ugly af eBook library manager
|
calibre # ugly af eBook library manager
|
||||||
foliate # gtk eBook reader
|
foliate # gtk eBook reader
|
||||||
gnome.simple-scan # document scanner
|
gnome.simple-scan # document scanner
|
||||||
gnome-feeds # feed reader, maybe will replace with nextcloud
|
gnome-feeds # feed reader, maybe will replace with nextcloud
|
||||||
|
|
||||||
# sequeler # friendly SQL client
|
# sequeler # friendly SQL client
|
||||||
blanket # background noise
|
blanket # background noise
|
||||||
unstable.czkawka # duplicate finder
|
unstable.czkawka # duplicate finder
|
||||||
pika-backup # backups
|
pika-backup # backups
|
||||||
# tilix # used to be my favourite terminal, but it's so outdated, that each time I use it less and less…
|
# tilix # used to be my favourite terminal, but it's so outdated, that each time I use it less and less…
|
||||||
gnome-obfuscate # censor private information
|
gnome-obfuscate # censor private information
|
||||||
metadata-cleaner # remove any metadata and geolocation from files
|
metadata-cleaner # remove any metadata and geolocation from files
|
||||||
gnome-recipes # migrate these to mealie and delete
|
gnome-recipes # migrate these to mealie and delete
|
||||||
unstable.denaro # manage your finances
|
unstable.denaro # manage your finances
|
||||||
# unstable.celeste # sync tool for any cloud provider
|
# unstable.celeste # sync tool for any cloud provider
|
||||||
|
# libgda # for pano shell extension
|
||||||
|
|
||||||
celluloid # video player
|
celluloid # video player
|
||||||
cozy # audiobooks player
|
cozy # audiobooks player
|
||||||
gnome-podcasts # podcast player
|
gnome-podcasts # podcast player
|
||||||
handbrake # video converter, may be unnecessary
|
handbrake # video converter, may be unnecessary
|
||||||
curtail # image compressor
|
curtail # image compressor
|
||||||
pitivi # video editor
|
pitivi # video editor
|
||||||
unstable.identity # compare images or videos
|
unstable.identity # compare images or videos
|
||||||
mousai # poor man shazam
|
mousai # poor man shazam
|
||||||
tagger # tag music files
|
tagger # tag music files
|
||||||
# bottles # wine prefix manager
|
# bottles # wine prefix manager
|
||||||
obs-studio # screen recorder & streamer
|
obs-studio # screen recorder & streamer
|
||||||
shortwave # listen to world radio
|
shortwave # listen to world radio
|
||||||
|
nextcloud-client # teehee
|
||||||
|
|
||||||
discord # chat
|
discord # chat
|
||||||
google-chrome # web browser with spyware included
|
google-chrome # web browser with spyware included
|
||||||
firefox # web browser that allows to disable spyware
|
firefox # web browser that allows to disable spyware
|
||||||
librewolf # no spyware web browser
|
librewolf # no spyware web browser
|
||||||
tor-browser-bundle-bin # dark web, so dark!
|
tor-browser-bundle-bin # dark web, so dark!
|
||||||
# hugo # website engine
|
# hugo # website engine
|
||||||
nicotine-plus # remember Ares?
|
nicotine-plus # remember Ares?
|
||||||
warp # never used, but supposedly cool for sharing files
|
warp # never used, but supposedly cool for sharing files
|
||||||
|
HentaiAtHome # uh-oh
|
||||||
|
|
||||||
yt-dlp # downloads videos from most video websites
|
yt-dlp # downloads videos from most video websites
|
||||||
unstable.gallery-dl # similar to yt-dlp but for most image gallery websites
|
unstable.gallery-dl # similar to yt-dlp but for most image gallery websites
|
||||||
gdu # disk-space utility, somewhat useful
|
gdu # disk-space utility, somewhat useful
|
||||||
gocryptfs # encrypted filesystem! shhh!!!
|
gocryptfs # encrypted filesystem! shhh!!!
|
||||||
exa # like ls but with colors
|
exa # like ls but with colors
|
||||||
trash-cli # oop! didn't meant to delete that
|
trash-cli # oop! didn't meant to delete that
|
||||||
ffmpeg_5 # coolest video converter!
|
ffmpeg_5 # coolest video converter!
|
||||||
neofetch # use once for brag, never again
|
neofetch # use once for brag, never again
|
||||||
rmlint # probably my favourite app, amazing dupe finder that integrates well with BTRFS
|
rmlint # probably my favourite app, amazing dupe finder that integrates well with BTRFS
|
||||||
tldr # man for retards
|
tldr # man for retards
|
||||||
ffmpegthumbnailer # create video thumbnails for nautilus, in absence of totem
|
# ffmpegthumbnailer # create video thumbnails for nautilus, in absence of totem
|
||||||
vcsi # video thumbnails for torrents, can I replace it with ^?
|
vcsi # video thumbnails for torrents, can I replace it with ^?
|
||||||
mediainfo # technical info about videos, needed by some of my scripts
|
mediainfo # technical info about videos, needed by some of my scripts
|
||||||
tree-sitter # code parsing, required by Doom emacs
|
tree-sitter # code parsing, required by Doom emacs
|
||||||
xdg-ninja # help declutter $HOME
|
xdg-ninja # help declutter $HOME
|
||||||
torrenttools # create torrent files from the terminal!
|
torrenttools # create torrent files from the terminal!
|
||||||
|
lm_sensors # for extension, displays cpu temp
|
||||||
|
# unstable.pokemon-colorscripts-mac # pokemon on your terminal!
|
||||||
|
|
||||||
# required by doom emacs, but still are rather useful.
|
# required by doom emacs, but still are rather useful.
|
||||||
fd # modern find, faster searches
|
fd # modern find, faster searches
|
||||||
fzf # fuzzy finder! super cool and useful
|
fzf # fuzzy finder! super cool and useful
|
||||||
ripgrep # modern grep
|
ripgrep # modern grep
|
||||||
languagetool # proofreader for English. check if works without the service
|
languagetool # proofreader for English. check if works without the service
|
||||||
graphviz # graphs
|
graphviz # graphs
|
||||||
# these two are for doom everywhere
|
# these two are for doom everywhere
|
||||||
xorg.xwininfo
|
xorg.xwininfo
|
||||||
xdotool
|
xdotool
|
||||||
|
|
||||||
# development environment
|
# development environment
|
||||||
nix-direnv # creates ephimeral environments
|
nix-direnv # creates ephimeral environments
|
||||||
direnv # manages development environment
|
direnv # manages development environment
|
||||||
exercism # learn to code
|
exercism # learn to code
|
||||||
|
|
||||||
# SH
|
# SH
|
||||||
bats # testing system, required by Exercism
|
bats # testing system, required by Exercism
|
||||||
bashdb # autocomplete
|
bashdb # autocomplete
|
||||||
shellcheck # linting
|
shellcheck # linting
|
||||||
shfmt # a shell parser and formatter
|
shfmt # a shell parser and formatter
|
||||||
nodePackages.bash-language-server # LSP support
|
nodePackages.bash-language-server # LSP support
|
||||||
file # required by my tasks script?
|
file # required by my tasks script?
|
||||||
gnome.zenity # dependency of my scripts
|
gnome.zenity # dependency of my scripts
|
||||||
xclip # manipulate clipboard from scripts
|
xclip # manipulate clipboard from scripts
|
||||||
|
|
||||||
# NIX
|
# NIX
|
||||||
nixfmt # linting
|
nixfmt # linting
|
||||||
|
|
||||||
# PYTHON.
|
# PYTHON.
|
||||||
python3 # base language
|
python3 # base language
|
||||||
pipenv # python development workflow for humans
|
pipenv # python development workflow for humans
|
||||||
|
|
||||||
# C# & Rust
|
# C# & Rust
|
||||||
omnisharp-roslyn # c# linter and code formatter
|
omnisharp-roslyn # c# linter and code formatter
|
||||||
|
|
||||||
# HASKELL
|
# HASKELL
|
||||||
# cabal-install # haskell interface
|
# cabal-install # haskell interface
|
||||||
|
|
||||||
# JS
|
# JS
|
||||||
# jq # linting
|
# jq # linting
|
||||||
nodejs # not as bad as I thought
|
nodejs # not as bad as I thought
|
||||||
|
|
||||||
gnome.gnome-tweaks # tweaks for the gnome desktop environment
|
hunspell
|
||||||
|
hunspellDicts.it_IT
|
||||||
|
hunspellDicts.es_MX
|
||||||
|
hunspellDicts.en_CA
|
||||||
|
|
||||||
gnomeExtensions.appindicator
|
# Themes
|
||||||
gnomeExtensions.gsconnect
|
adwaita-qt
|
||||||
|
unstable.adw-gtk3
|
||||||
|
unstable.gradience # theme customizer, allows you to modify adw-gtk3 themes
|
||||||
|
gnome.gnome-tweaks # tweaks for the gnome desktop environment
|
||||||
|
|
||||||
hunspell
|
# Fonts
|
||||||
hunspellDicts.it_IT
|
(nerdfonts.override {
|
||||||
hunspellDicts.es_MX
|
fonts = [
|
||||||
hunspellDicts.en_CA
|
"Agave"
|
||||||
|
"CascadiaCode"
|
||||||
|
"SourceCodePro"
|
||||||
|
"Ubuntu"
|
||||||
|
"FiraCode"
|
||||||
|
"Iosevka"
|
||||||
|
];
|
||||||
|
})
|
||||||
|
symbola
|
||||||
|
|
||||||
# Themes
|
(papirus-icon-theme.override { color = "adwaita"; })
|
||||||
adwaita-qt
|
|
||||||
unstable.adw-gtk3
|
|
||||||
unstable.gradience # theme customizer, allows you to modify adw-gtk3 themes
|
|
||||||
|
|
||||||
# Fonts
|
]) ++ (with pkgs.python310Packages; [
|
||||||
(nerdfonts.override {
|
|
||||||
fonts = [ "Agave" "CascadiaCode" "SourceCodePro" "Ubuntu" "FiraCode" "Iosevka" ];
|
|
||||||
})
|
|
||||||
symbola
|
|
||||||
|
|
||||||
# (papirus-icon-theme.override {
|
|
||||||
# color = "grey";
|
|
||||||
# })
|
|
||||||
|
|
||||||
]) ++ (with pkgs.python310Packages; [
|
|
||||||
black # Python code formatter
|
black # Python code formatter
|
||||||
flake8 # wraper for pyflakes, pycodestyle and mccabe
|
flake8 # wraper for pyflakes, pycodestyle and mccabe
|
||||||
isort # sort Python imports
|
isort # sort Python imports
|
||||||
@ -252,41 +249,54 @@ symbola
|
|||||||
speedtest-cli # check internet speed from the comand line
|
speedtest-cli # check internet speed from the comand line
|
||||||
editorconfig # follow rules of contributin
|
editorconfig # follow rules of contributin
|
||||||
|
|
||||||
]) ++ (with pkgs.fishPlugins; [
|
]) ++ (with pkgs.fishPlugins; [
|
||||||
sponge # keep history clean from typos
|
sponge # keep history clean from typos
|
||||||
fzf-fish # fish command line with fzf keybindings
|
fzf-fish # fish command line with fzf keybindings
|
||||||
colored-man-pages # self explanatory
|
colored-man-pages # self explanatory
|
||||||
autopair-fish # who has time for a closing bracket?
|
autopair-fish # who has time for a closing bracket?
|
||||||
bass # integrate bash utilities on fish
|
bass # integrate bash utilities on fish
|
||||||
|
|
||||||
]) ++ (with pkgs.nodePackages; [
|
]) ++ (with pkgs.gnomeExtensions; [
|
||||||
|
appindicator
|
||||||
|
gsconnect
|
||||||
|
freon
|
||||||
|
panel-scroll
|
||||||
|
reading-strip
|
||||||
|
tactile
|
||||||
|
pano
|
||||||
|
|
||||||
|
]) ++ (with pkgs.nodePackages; [
|
||||||
dockerfile-language-server-nodejs
|
dockerfile-language-server-nodejs
|
||||||
markdownlint-cli
|
markdownlint-cli
|
||||||
prettier
|
prettier
|
||||||
pnpm
|
pnpm
|
||||||
]); }; # <--- end of package list
|
]);
|
||||||
|
}; # <--- end of package list
|
||||||
|
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
|
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
|
|
||||||
home-manager.users.jawz = { config, pkgs, ... }:{
|
home-manager.users.jawz = { config, pkgs, ... }: {
|
||||||
# imports = [ ./dotfiles/dconf.nix ];
|
# imports = [ ./dotfiles/dconf.nix ];
|
||||||
home.stateVersion = VERSION;
|
home.stateVersion = VERSION;
|
||||||
home.packages = with pkgs; [ ];
|
home.packages = with pkgs; [ ];
|
||||||
|
|
||||||
programs.starship.enable = true;
|
programs.starship.enable = true;
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# useBabelfish = true; This setting doens't work from inside home-manager
|
# useBabelfish = true; This setting doens't work from inside home-manager
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
ls = "exa --icons --group-directories-first --no-permissions --no-user --no-time";
|
ls =
|
||||||
|
"exa --icons --group-directories-first --no-permissions --no-user --no-time";
|
||||||
edit = "emacsclient -t";
|
edit = "emacsclient -t";
|
||||||
comic = "download -u jawz -i (cat $lc | fzf --multi --exact -i)";
|
comic = "download -u jawz -i (cat $lc | fzf --multi --exact -i)";
|
||||||
gallery = "download -u jawz -i (cat $lw | fzf --multi --exact -i)";
|
gallery = "download -u jawz -i (cat $lw | fzf --multi --exact -i)";
|
||||||
open_gallery = "open (find /mnt/disk2/scrapping/JawZ/gallery-dl -type d | fzf)";
|
open_gallery =
|
||||||
unique_extensions = "find . -type f | string match -r '([^.\/]+)\$' | sort -u";
|
"open (find /mnt/disk2/scrapping/JawZ/gallery-dl -type d | fzf)";
|
||||||
|
unique_extensions =
|
||||||
|
"find . -type f | string match -r '([^./]+)$' | sort -u";
|
||||||
cp = "cp -i";
|
cp = "cp -i";
|
||||||
mv = "mv -i";
|
mv = "mv -i";
|
||||||
mkdir = "mkdir -p";
|
mkdir = "mkdir -p";
|
||||||
@ -308,31 +318,34 @@ programs.fish = {
|
|||||||
};
|
};
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
|
|
||||||
set fish_greeting "pika pika chu!!!! also remember fisher!"
|
function fish_greeting
|
||||||
# Lists
|
pokemon-colorscripts -r
|
||||||
set -l list_root ${config.home.homeDirectory}/.config/jawz/lists/jawz
|
end
|
||||||
set lw $list_root/watch.txt
|
# Lists
|
||||||
set li $list_root/instant.txt
|
set -l list_root ${config.home.homeDirectory}/.config/jawz/lists/jawz
|
||||||
set lc $list_root/comic.txt
|
set lw $list_root/watch.txt
|
||||||
set command_timeout = 30
|
set li $list_root/instant.txt
|
||||||
|
set lc $list_root/comic.txt
|
||||||
|
set command_timeout = 30
|
||||||
|
|
||||||
set GPG_TTY (tty)
|
set GPG_TTY (tty)
|
||||||
|
|
||||||
# Set EMACS/VI mode
|
# Set EMACS/VI mode
|
||||||
function fish_user_key_bindings
|
function fish_user_key_bindings
|
||||||
# fish_default_key_bindings
|
# fish_default_key_bindings
|
||||||
fish_vi_key_bindings
|
fish_vi_key_bindings
|
||||||
end
|
end
|
||||||
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
functions = {
|
functions = {
|
||||||
nixos-magic = ''
|
nixos-magic = ''
|
||||||
|
|
||||||
set -l nix_file "$HOME/Development/NixOS/configuration.nix"
|
set -l nix_file "$HOME/Development/NixOS/configuration.nix"
|
||||||
echo $nix_file
|
set -l hardware_file "$HOME/Development/NixOS/hardware-configuration.nix"
|
||||||
nixfmt $nix_file
|
nixfmt $nix_file
|
||||||
sudo nixos-rebuild switch -I nixos-config=$nix_file
|
nixfmt $hardware_file
|
||||||
|
sudo nixos-rebuild switch -I nixos-config=$nix_file
|
||||||
|
|
||||||
'';
|
'';
|
||||||
mkcd = ''
|
mkcd = ''
|
||||||
@ -342,32 +355,33 @@ sudo nixos-rebuild switch -I nixos-config=$nix_file
|
|||||||
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
bat = {
|
bat = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = {
|
config = {
|
||||||
# map-syntax = [ "*.jenkinsfile:Groovy" "*.props:Java Properties" ];
|
# map-syntax = [ "*.jenkinsfile:Groovy" "*.props:Java Properties" ];
|
||||||
pager = "less -FR";
|
pager = "less -FR";
|
||||||
theme = "base16"; };
|
theme = "base16";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "Danilo Reyes";
|
userName = "Danilo Reyes";
|
||||||
userEmail = "CaptainJawZ@outlook.com";
|
userEmail = "CaptainJawZ@outlook.com";
|
||||||
};
|
};
|
||||||
gpg = {
|
# gpg = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
homedir = "${config.xdg.dataHome}/gnupg";
|
# homedir = "${config.xdg.dataHome}/gnupg";
|
||||||
};
|
# };
|
||||||
htop = {
|
htop = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.htop-vim;
|
package = pkgs.htop-vim;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg = {
|
xdg = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userDirs = {
|
userDirs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -383,30 +397,31 @@ xdg = {
|
|||||||
};
|
};
|
||||||
configFile = {
|
configFile = {
|
||||||
"wgetrc".source = ./dotfiles/wget/wgetrc;
|
"wgetrc".source = ./dotfiles/wget/wgetrc;
|
||||||
"configstore/update-notifier-npm-check.json".source = ./dotfiles/npm/update-notifier-npm-check.json;
|
"configstore/update-notifier-npm-check.json".source =
|
||||||
|
./dotfiles/npm/update-notifier-npm-check.json;
|
||||||
"npm/npmrc".source = ./dotfiles/npm/npmrc;
|
"npm/npmrc".source = ./dotfiles/npm/npmrc;
|
||||||
"gallery-dl/config.json".source = ./dotfiles/gallery-dl/config.json;
|
"gallery-dl/config.json".source = ./dotfiles/gallery-dl/config.json;
|
||||||
"htop/htoprc".source = ./dotfiles/htop/htoprc;
|
"htop/htoprc".source = ./dotfiles/htop/htoprc;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# services = {
|
services = {
|
||||||
# emacs = {
|
emacs = {
|
||||||
# enable = true;
|
enable = true;
|
||||||
# defaultEditor = true;
|
defaultEditor = true;
|
||||||
# package = pkgs.emacs;
|
package = pkgs.emacs;
|
||||||
# };
|
};
|
||||||
# };
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
wget
|
wget
|
||||||
neovim
|
neovim
|
||||||
docker-compose # easy way to migrate my docker anywhere!
|
docker-compose # easy way to migrate my docker anywhere!
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.variables = rec {
|
environment.variables = rec {
|
||||||
# PATH
|
# PATH
|
||||||
XDG_CACHE_HOME = "\${HOME}/.cache";
|
XDG_CACHE_HOME = "\${HOME}/.cache";
|
||||||
XDG_CONFIG_HOME = "\${HOME}/.config";
|
XDG_CONFIG_HOME = "\${HOME}/.config";
|
||||||
@ -427,12 +442,14 @@ environment.variables = rec {
|
|||||||
NPM_CONFIG_USERCONFIG = "\${XDG_CONFIG_HOME}/npm/npmrc";
|
NPM_CONFIG_USERCONFIG = "\${XDG_CONFIG_HOME}/npm/npmrc";
|
||||||
PNPM_HOME = "\${XDG_DATA_HOME}/pnpm";
|
PNPM_HOME = "\${XDG_DATA_HOME}/pnpm";
|
||||||
# OPTIONS
|
# OPTIONS
|
||||||
|
HISTFILE = "\${XDG_STATE_HOME}/bash/history";
|
||||||
LESSHISTFILE = "-";
|
LESSHISTFILE = "-";
|
||||||
GHCUP_USE_XDG_DIRS = "true";
|
GHCUP_USE_XDG_DIRS = "true";
|
||||||
RIPGREP_CONFIG_PATH = "\${XDG_CONFIG_HOME}/ripgrep/ripgreprc";
|
RIPGREP_CONFIG_PATH = "\${XDG_CONFIG_HOME}/ripgrep/ripgreprc";
|
||||||
ELECTRUMDIR = "\${XDG_DATA_HOME}/electrum";
|
ELECTRUMDIR = "\${XDG_DATA_HOME}/electrum";
|
||||||
VISUAL = "emacsclient -ca emacs";
|
VISUAL = "emacsclient -ca emacs";
|
||||||
WGETRC = "\${XDG_CONFIG_HOME}/wgetrc";
|
WGETRC = "\${XDG_CONFIG_HOME}/wgetrc";
|
||||||
|
XCOMPOSECACHE = "${XDG_CACHE_HOME}/X11/xcompose";
|
||||||
"_JAVA_OPTIONS" = "-Djava.util.prefs.userRoot=\${XDG_CONFIG_HOME}/java";
|
"_JAVA_OPTIONS" = "-Djava.util.prefs.userRoot=\${XDG_CONFIG_HOME}/java";
|
||||||
# NVIDIA
|
# NVIDIA
|
||||||
CUDA_CACHE_PATH = "\${XDG_CACHE_HOME}/nv";
|
CUDA_CACHE_PATH = "\${XDG_CACHE_HOME}/nv";
|
||||||
@ -441,26 +458,25 @@ environment.variables = rec {
|
|||||||
|
|
||||||
# Themes
|
# Themes
|
||||||
# GTK_THEME = "Adwaita:light";
|
# GTK_THEME = "Adwaita:light";
|
||||||
# QT_QPA_PLATFORMTHEME = "adwaita-dark";
|
# QT_QPA_PLATFORMTHEME = "adwaita";
|
||||||
# QT_STYLE_OVERRIDE = "adwaita";
|
# QT_STYLE_OVERRIDE = "adwaita";
|
||||||
# CALIBRE_USE_SYSTEM_THEME = "1";
|
CALIBRE_USE_SYSTEM_THEME = "1";
|
||||||
|
|
||||||
PATH = [
|
PATH = [
|
||||||
"\${XDG_BIN_HOME}"
|
"\${HOME}/.local/bin"
|
||||||
"\${XDG_CONFIG_HOME}/emacs/bin"
|
"\${XDG_CONFIG_HOME}/emacs/bin"
|
||||||
"\${XDG_DATA_HOME}/npm/bin"
|
"\${XDG_DATA_HOME}/npm/bin"
|
||||||
"\${PNPM_HOME}"
|
"\${XDG_DATA_HOME}/pnpm"
|
||||||
"\${SCRIPTS}"
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualisation.docker = {
|
virtualisation.docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
storageDriver = "btrfs";
|
storageDriver = "btrfs";
|
||||||
enableNvidia = true;
|
enableNvidia = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
snapraid = {
|
snapraid = {
|
||||||
enable = true;
|
enable = true;
|
||||||
touchBeforeSync = true;
|
touchBeforeSync = true;
|
||||||
sync.interval = "02:00";
|
sync.interval = "02:00";
|
||||||
@ -469,9 +485,7 @@ snapraid = {
|
|||||||
olderThan = 10;
|
olderThan = 10;
|
||||||
interval = "4:00";
|
interval = "4:00";
|
||||||
};
|
};
|
||||||
parityFiles = [
|
parityFiles = [ "/mnt/parity/snapraid.parity" ];
|
||||||
"/mnt/parity/snapraid.parity"
|
|
||||||
];
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
autosave 50
|
autosave 50
|
||||||
'';
|
'';
|
||||||
@ -480,6 +494,7 @@ snapraid = {
|
|||||||
"/lost+found/"
|
"/lost+found/"
|
||||||
"/multimedia/downloads/"
|
"/multimedia/downloads/"
|
||||||
"/scrapping/nextcloud/"
|
"/scrapping/nextcloud/"
|
||||||
|
"/backups/"
|
||||||
];
|
];
|
||||||
dataDisks = {
|
dataDisks = {
|
||||||
d1 = "/mnt/disk1/";
|
d1 = "/mnt/disk1/";
|
||||||
@ -490,48 +505,42 @@ snapraid = {
|
|||||||
"/mnt/disk1/snapraid.content"
|
"/mnt/disk1/snapraid.content"
|
||||||
"/mnt/disk2/snapraid.content"
|
"/mnt/disk2/snapraid.content"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
mtr.enable = true;
|
mtr.enable = true;
|
||||||
gnupg.agent = {
|
gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
};
|
};
|
||||||
geary = {
|
geary = { enable = true; };
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
steam = {
|
steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
remotePlay.openFirewall = true;
|
remotePlay.openFirewall = true;
|
||||||
dedicatedServer.openFirewall = true;
|
dedicatedServer.openFirewall = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
printing.enable = true;
|
printing.enable = true;
|
||||||
fstrim.enable = true;
|
fstrim.enable = true;
|
||||||
btrfs.autoScrub = {
|
btrfs.autoScrub = {
|
||||||
enable = true;
|
enable = true;
|
||||||
fileSystems = [
|
fileSystems = [ "/" "/mnt/disk1" "/mnt/disk2" ];
|
||||||
"/"
|
|
||||||
"/mnt/disk1"
|
|
||||||
"/mnt/disk2"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
openssh = {
|
openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
ports = [ 25152 ];
|
ports = [ 25152 ];
|
||||||
};
|
};
|
||||||
udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
|
# udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
|
||||||
emacs = {
|
emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
package = pkgs.emacs;
|
package = pkgs.emacs;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services = {
|
systemd.services = {
|
||||||
"docker-compose" = {
|
"docker-compose" = {
|
||||||
enable = true;
|
enable = true;
|
||||||
restartIfChanged = true;
|
restartIfChanged = true;
|
||||||
@ -542,26 +551,40 @@ systemd.services = {
|
|||||||
environment = {
|
environment = {
|
||||||
FILE = "/home/jawz/Development/Docker/docker-compose.yml";
|
FILE = "/home/jawz/Development/Docker/docker-compose.yml";
|
||||||
};
|
};
|
||||||
path = [
|
path = [ pkgs.docker-compose ];
|
||||||
pkgs.docker-compose
|
|
||||||
];
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
# Type = "simple";
|
# Type = "simple";
|
||||||
RestartSec = 30;
|
RestartSec = 30;
|
||||||
ExecStart = "${pkgs.docker-compose}/bin/docker-compose -f \${FILE} up --remove-orphans";
|
ExecStart =
|
||||||
ExecStop = "${pkgs.docker-compose}docker-compose -f \${FILE} down";
|
"${pkgs.docker-compose}/bin/docker-compose -f \${FILE} up --remove-orphans";
|
||||||
|
ExecStop = "${pkgs.docker-compose}/bin/docker-compose -f \${FILE} down";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
systemd.user.services = {
|
||||||
|
"HentaiAtHome" = {
|
||||||
|
enable = true;
|
||||||
|
restartIfChanged = true;
|
||||||
|
description = "Run hentai@home server";
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
path = [ pkgs.HentaiAtHome ];
|
||||||
|
serviceConfig = {
|
||||||
|
Restart = "on-failure";
|
||||||
|
RestartSec = 30;
|
||||||
|
WorkingDirectory = "/mnt/hnbox";
|
||||||
|
ExecStart = "${pkgs.HentaiAtHome}/bin/HentaiAtHome";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||||
# Or disable the firewall altogether.
|
# Or disable the firewall altogether.
|
||||||
networking.firewall.enable = false;
|
networking.firewall.enable = false;
|
||||||
|
|
||||||
system.copySystemConfiguration = true;
|
system.copySystemConfiguration = true;
|
||||||
|
|
||||||
system.stateVersion = VERSION;
|
system.stateVersion = VERSION;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -141,6 +141,7 @@ services = {
|
|||||||
videoDrivers = [ "nvidia" ];
|
videoDrivers = [ "nvidia" ];
|
||||||
displayManager.gdm.enable = true;
|
displayManager.gdm.enable = true;
|
||||||
desktopManager.gnome.enable = true;
|
desktopManager.gnome.enable = true;
|
||||||
|
# wacom.enable = true;
|
||||||
layout = "us";
|
layout = "us";
|
||||||
libinput.enable = true; # Wacom required?
|
libinput.enable = true; # Wacom required?
|
||||||
};
|
};
|
||||||
@ -151,10 +152,11 @@ environment.gnome.excludePackages = (with pkgs; [
|
|||||||
gnome-tour
|
gnome-tour
|
||||||
gnome-text-editor
|
gnome-text-editor
|
||||||
gnome-connections
|
gnome-connections
|
||||||
|
# gnome-shell-extensions
|
||||||
baobab
|
baobab
|
||||||
])
|
])
|
||||||
++ (with pkgs.gnome; [
|
++ (with pkgs.gnome; [
|
||||||
totem
|
# totem
|
||||||
gedit
|
gedit
|
||||||
gnome-music
|
gnome-music
|
||||||
epiphany
|
epiphany
|
||||||
@ -306,6 +308,7 @@ metadata-cleaner # remove any metadata and geolocation from files
|
|||||||
gnome-recipes # migrate these to mealie and delete
|
gnome-recipes # migrate these to mealie and delete
|
||||||
unstable.denaro # manage your finances
|
unstable.denaro # manage your finances
|
||||||
# unstable.celeste # sync tool for any cloud provider
|
# unstable.celeste # sync tool for any cloud provider
|
||||||
|
# libgda # for pano shell extension
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** MULTIMEDIA
|
*** MULTIMEDIA
|
||||||
@ -326,6 +329,7 @@ tagger # tag music files
|
|||||||
# bottles # wine prefix manager
|
# bottles # wine prefix manager
|
||||||
obs-studio # screen recorder & streamer
|
obs-studio # screen recorder & streamer
|
||||||
shortwave # listen to world radio
|
shortwave # listen to world radio
|
||||||
|
nextcloud-client # teehee
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** Web
|
*** Web
|
||||||
@ -340,6 +344,7 @@ tor-browser-bundle-bin # dark web, so dark!
|
|||||||
# hugo # website engine
|
# hugo # website engine
|
||||||
nicotine-plus # remember Ares?
|
nicotine-plus # remember Ares?
|
||||||
warp # never used, but supposedly cool for sharing files
|
warp # never used, but supposedly cool for sharing files
|
||||||
|
HentaiAtHome # uh-oh
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** COMMAND-LINE PACKAGES
|
** COMMAND-LINE PACKAGES
|
||||||
@ -355,12 +360,14 @@ ffmpeg_5 # coolest video converter!
|
|||||||
neofetch # use once for brag, never again
|
neofetch # use once for brag, never again
|
||||||
rmlint # probably my favourite app, amazing dupe finder that integrates well with BTRFS
|
rmlint # probably my favourite app, amazing dupe finder that integrates well with BTRFS
|
||||||
tldr # man for retards
|
tldr # man for retards
|
||||||
ffmpegthumbnailer # create video thumbnails for nautilus, in absence of totem
|
# ffmpegthumbnailer # create video thumbnails for nautilus, in absence of totem
|
||||||
vcsi # video thumbnails for torrents, can I replace it with ^?
|
vcsi # video thumbnails for torrents, can I replace it with ^?
|
||||||
mediainfo # technical info about videos, needed by some of my scripts
|
mediainfo # technical info about videos, needed by some of my scripts
|
||||||
tree-sitter # code parsing, required by Doom emacs
|
tree-sitter # code parsing, required by Doom emacs
|
||||||
xdg-ninja # help declutter $HOME
|
xdg-ninja # help declutter $HOME
|
||||||
torrenttools # create torrent files from the terminal!
|
torrenttools # create torrent files from the terminal!
|
||||||
|
lm_sensors # for extension, displays cpu temp
|
||||||
|
# unstable.pokemon-colorscripts-mac # pokemon on your terminal!
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** DEVELOPMENT PACKAGES
|
** DEVELOPMENT PACKAGES
|
||||||
@ -409,15 +416,6 @@ omnisharp-roslyn # c# linter and code formatter
|
|||||||
nodejs # not as bad as I thought
|
nodejs # not as bad as I thought
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** GNOME EXTENSIONS
|
|
||||||
|
|
||||||
#+begin_src nix
|
|
||||||
gnome.gnome-tweaks # tweaks for the gnome desktop environment
|
|
||||||
|
|
||||||
gnomeExtensions.appindicator
|
|
||||||
gnomeExtensions.gsconnect
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
** HUNSPELL
|
** HUNSPELL
|
||||||
These dictionaries work with Firefox, Doom Emacs and LibreOffice.
|
These dictionaries work with Firefox, Doom Emacs and LibreOffice.
|
||||||
|
|
||||||
@ -437,6 +435,7 @@ main draws of Linux for me.
|
|||||||
adwaita-qt
|
adwaita-qt
|
||||||
unstable.adw-gtk3
|
unstable.adw-gtk3
|
||||||
unstable.gradience # theme customizer, allows you to modify adw-gtk3 themes
|
unstable.gradience # theme customizer, allows you to modify adw-gtk3 themes
|
||||||
|
gnome.gnome-tweaks # tweaks for the gnome desktop environment
|
||||||
|
|
||||||
# Fonts
|
# Fonts
|
||||||
(nerdfonts.override {
|
(nerdfonts.override {
|
||||||
@ -444,9 +443,9 @@ unstable.gradience # theme customizer, allows you to modify adw-gtk3 themes
|
|||||||
})
|
})
|
||||||
symbola
|
symbola
|
||||||
|
|
||||||
# (papirus-icon-theme.override {
|
(papirus-icon-theme.override {
|
||||||
# color = "grey";
|
color = "adwaita";
|
||||||
# })
|
})
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** PYTHON
|
** PYTHON
|
||||||
@ -477,7 +476,20 @@ symbola
|
|||||||
bass # integrate bash utilities on fish
|
bass # integrate bash utilities on fish
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** NODE JS PACKAGES
|
** GNOME EXTENSIONS
|
||||||
|
|
||||||
|
#+begin_src nix
|
||||||
|
]) ++ (with pkgs.gnomeExtensions; [
|
||||||
|
appindicator
|
||||||
|
gsconnect
|
||||||
|
freon
|
||||||
|
panel-scroll
|
||||||
|
reading-strip
|
||||||
|
tactile
|
||||||
|
pano
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
** NODEJS PACKAGES
|
||||||
|
|
||||||
#+begin_src nix
|
#+begin_src nix
|
||||||
]) ++ (with pkgs.nodePackages; [
|
]) ++ (with pkgs.nodePackages; [
|
||||||
@ -558,8 +570,9 @@ programs.fish = {
|
|||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
#+begin_src fish
|
#+begin_src fish
|
||||||
|
function fish_greeting
|
||||||
set fish_greeting "pika pika chu!!!! also remember fisher!"
|
pokemon-colorscripts -r
|
||||||
|
end
|
||||||
# Lists
|
# Lists
|
||||||
set -l list_root ${config.home.homeDirectory}/.config/jawz/lists/jawz
|
set -l list_root ${config.home.homeDirectory}/.config/jawz/lists/jawz
|
||||||
set lw $list_root/watch.txt
|
set lw $list_root/watch.txt
|
||||||
@ -574,7 +587,6 @@ function fish_user_key_bindings
|
|||||||
# fish_default_key_bindings
|
# fish_default_key_bindings
|
||||||
fish_vi_key_bindings
|
fish_vi_key_bindings
|
||||||
end
|
end
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
@ -590,8 +602,9 @@ functions = {
|
|||||||
|
|
||||||
#+begin_src fish
|
#+begin_src fish
|
||||||
set -l nix_file "$HOME/Development/NixOS/configuration.nix"
|
set -l nix_file "$HOME/Development/NixOS/configuration.nix"
|
||||||
echo $nix_file
|
set -l hardware_file "$HOME/Development/NixOS/hardware-configuration.nix"
|
||||||
nixfmt $nix_file
|
nixfmt $nix_file
|
||||||
|
nixfmt $hardware_file
|
||||||
sudo nixos-rebuild switch -I nixos-config=$nix_file
|
sudo nixos-rebuild switch -I nixos-config=$nix_file
|
||||||
#+end_src
|
#+end_src
|
||||||
#+begin_src nix
|
#+begin_src nix
|
||||||
@ -624,10 +637,10 @@ programs = {
|
|||||||
userName = "Danilo Reyes";
|
userName = "Danilo Reyes";
|
||||||
userEmail = "CaptainJawZ@outlook.com";
|
userEmail = "CaptainJawZ@outlook.com";
|
||||||
};
|
};
|
||||||
gpg = {
|
# gpg = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
homedir = "${config.xdg.dataHome}/gnupg";
|
# homedir = "${config.xdg.dataHome}/gnupg";
|
||||||
};
|
# };
|
||||||
htop = {
|
htop = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.htop-vim;
|
package = pkgs.htop-vim;
|
||||||
@ -665,13 +678,13 @@ xdg = {
|
|||||||
** USER-SERVICES
|
** USER-SERVICES
|
||||||
|
|
||||||
#+begin_src nix
|
#+begin_src nix
|
||||||
# services = {
|
services = {
|
||||||
# emacs = {
|
emacs = {
|
||||||
# enable = true;
|
enable = true;
|
||||||
# defaultEditor = true;
|
defaultEditor = true;
|
||||||
# package = pkgs.emacs;
|
package = pkgs.emacs;
|
||||||
# };
|
};
|
||||||
# };
|
};
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** CLOSING HOME-MANAGER
|
** CLOSING HOME-MANAGER
|
||||||
@ -716,12 +729,14 @@ environment.variables = rec {
|
|||||||
NPM_CONFIG_USERCONFIG = "\${XDG_CONFIG_HOME}/npm/npmrc";
|
NPM_CONFIG_USERCONFIG = "\${XDG_CONFIG_HOME}/npm/npmrc";
|
||||||
PNPM_HOME = "\${XDG_DATA_HOME}/pnpm";
|
PNPM_HOME = "\${XDG_DATA_HOME}/pnpm";
|
||||||
# OPTIONS
|
# OPTIONS
|
||||||
|
HISTFILE = "\${XDG_STATE_HOME}/bash/history";
|
||||||
LESSHISTFILE = "-";
|
LESSHISTFILE = "-";
|
||||||
GHCUP_USE_XDG_DIRS = "true";
|
GHCUP_USE_XDG_DIRS = "true";
|
||||||
RIPGREP_CONFIG_PATH = "\${XDG_CONFIG_HOME}/ripgrep/ripgreprc";
|
RIPGREP_CONFIG_PATH = "\${XDG_CONFIG_HOME}/ripgrep/ripgreprc";
|
||||||
ELECTRUMDIR = "\${XDG_DATA_HOME}/electrum";
|
ELECTRUMDIR = "\${XDG_DATA_HOME}/electrum";
|
||||||
VISUAL = "emacsclient -ca emacs";
|
VISUAL = "emacsclient -ca emacs";
|
||||||
WGETRC = "\${XDG_CONFIG_HOME}/wgetrc";
|
WGETRC = "\${XDG_CONFIG_HOME}/wgetrc";
|
||||||
|
XCOMPOSECACHE = "${XDG_CACHE_HOME}/X11/xcompose";
|
||||||
"_JAVA_OPTIONS" = "-Djava.util.prefs.userRoot=\${XDG_CONFIG_HOME}/java";
|
"_JAVA_OPTIONS" = "-Djava.util.prefs.userRoot=\${XDG_CONFIG_HOME}/java";
|
||||||
# NVIDIA
|
# NVIDIA
|
||||||
CUDA_CACHE_PATH = "\${XDG_CACHE_HOME}/nv";
|
CUDA_CACHE_PATH = "\${XDG_CACHE_HOME}/nv";
|
||||||
@ -730,16 +745,15 @@ environment.variables = rec {
|
|||||||
|
|
||||||
# Themes
|
# Themes
|
||||||
# GTK_THEME = "Adwaita:light";
|
# GTK_THEME = "Adwaita:light";
|
||||||
# QT_QPA_PLATFORMTHEME = "adwaita-dark";
|
# QT_QPA_PLATFORMTHEME = "adwaita";
|
||||||
# QT_STYLE_OVERRIDE = "adwaita";
|
# QT_STYLE_OVERRIDE = "adwaita";
|
||||||
# CALIBRE_USE_SYSTEM_THEME = "1";
|
CALIBRE_USE_SYSTEM_THEME = "1";
|
||||||
|
|
||||||
PATH = [
|
PATH = [
|
||||||
"\${XDG_BIN_HOME}"
|
"\${HOME}/.local/bin"
|
||||||
"\${XDG_CONFIG_HOME}/emacs/bin"
|
"\${XDG_CONFIG_HOME}/emacs/bin"
|
||||||
"\${XDG_DATA_HOME}/npm/bin"
|
"\${XDG_DATA_HOME}/npm/bin"
|
||||||
"\${PNPM_HOME}"
|
"\${XDG_DATA_HOME}/pnpm"
|
||||||
"\${SCRIPTS}"
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
#+end_src
|
#+end_src
|
||||||
@ -784,6 +798,7 @@ snapraid = {
|
|||||||
"/lost+found/"
|
"/lost+found/"
|
||||||
"/multimedia/downloads/"
|
"/multimedia/downloads/"
|
||||||
"/scrapping/nextcloud/"
|
"/scrapping/nextcloud/"
|
||||||
|
"/backups/"
|
||||||
];
|
];
|
||||||
dataDisks = {
|
dataDisks = {
|
||||||
d1 = "/mnt/disk1/";
|
d1 = "/mnt/disk1/";
|
||||||
@ -833,7 +848,7 @@ services = {
|
|||||||
enable = true;
|
enable = true;
|
||||||
ports = [ 25152 ];
|
ports = [ 25152 ];
|
||||||
};
|
};
|
||||||
udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
|
# udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
|
||||||
emacs = {
|
emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
@ -866,7 +881,24 @@ systemd.services = {
|
|||||||
# Type = "simple";
|
# Type = "simple";
|
||||||
RestartSec = 30;
|
RestartSec = 30;
|
||||||
ExecStart = "${pkgs.docker-compose}/bin/docker-compose -f \${FILE} up --remove-orphans";
|
ExecStart = "${pkgs.docker-compose}/bin/docker-compose -f \${FILE} up --remove-orphans";
|
||||||
ExecStop = "${pkgs.docker-compose}docker-compose -f \${FILE} down";
|
ExecStop = "${pkgs.docker-compose}/bin/docker-compose -f \${FILE} down";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
systemd.user.services = {
|
||||||
|
"HentaiAtHome" = {
|
||||||
|
enable = true;
|
||||||
|
restartIfChanged = true;
|
||||||
|
description = "Run hentai@home server";
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
path = [
|
||||||
|
pkgs.HentaiAtHome
|
||||||
|
];
|
||||||
|
serviceConfig = {
|
||||||
|
Restart = "on-failure";
|
||||||
|
RestartSec = 30;
|
||||||
|
WorkingDirectory="/mnt/hnbox";
|
||||||
|
ExecStart = "${pkgs.HentaiAtHome}/bin/HentaiAtHome";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@ -19,12 +19,8 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
initrd.luks.devices = {
|
initrd.luks.devices = {
|
||||||
root = {
|
nvme = {
|
||||||
device = "/dev/disk/by-uuid/2dc90b31-2a37-46a9-92e5-a648cd74a860";
|
device = "/dev/disk/by-uuid/af72f45c-cf7c-4e7d-8eab-2a95ab754921";
|
||||||
preLVM = true;
|
|
||||||
};
|
|
||||||
root2 = {
|
|
||||||
device = "/dev/disk/by-uuid/b0414af9-bca9-44d0-9fe3-a6e4f0b1c28c";
|
|
||||||
preLVM = true;
|
preLVM = true;
|
||||||
};
|
};
|
||||||
disk1 = {
|
disk1 = {
|
||||||
@ -35,23 +31,31 @@
|
|||||||
device = "/dev/disk/by-uuid/0ed12b83-4c56-4ba8-b4ea-75a9e927d771";
|
device = "/dev/disk/by-uuid/0ed12b83-4c56-4ba8-b4ea-75a9e927d771";
|
||||||
preLVM = true;
|
preLVM = true;
|
||||||
};
|
};
|
||||||
|
hnbox = {
|
||||||
|
device = "/dev/disk/by-uuid/c7dd2d5a-b0b3-46a0-aca9-3d4975c1f0bc";
|
||||||
|
preLVM = true;
|
||||||
|
};
|
||||||
|
seedbox = {
|
||||||
|
device = "/dev/disk/by-uuid/04f06a3e-a91f-476b-9a4b-b9c722ba99e7";
|
||||||
|
preLVM = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
kernelModules = [ "kvm-intel" ];
|
kernelModules = [ "kvm-intel" ];
|
||||||
kernel.sysctl = { "vm.swappiness" = 90; };
|
kernel.sysctl = { "vm.swappiness" = 100; };
|
||||||
extraModulePackages = [ ];
|
extraModulePackages = [ ];
|
||||||
initrd = {
|
initrd = {
|
||||||
availableKernelModules =
|
availableKernelModules =
|
||||||
[ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
[ "xhci_pci" "ahci" "usbhid" "nvme" "usb_storage" "sd_mod" ];
|
||||||
kernelModules = [ ];
|
kernelModules = [ ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "/dev/mapper/root";
|
device = "/dev/mapper/nvme";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [
|
options = [
|
||||||
"subvol=nix"
|
"subvol=nix"
|
||||||
"ssd"
|
# "ssd"
|
||||||
"compress=zstd:3"
|
"compress=zstd:3"
|
||||||
"x-systemd.device-timeout=0"
|
"x-systemd.device-timeout=0"
|
||||||
"space_cache=v2"
|
"space_cache=v2"
|
||||||
@ -61,11 +65,11 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/home" = {
|
fileSystems."/home" = {
|
||||||
device = "/dev/mapper/root";
|
device = "/dev/mapper/nvme";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [
|
options = [
|
||||||
"subvol=home"
|
"subvol=home"
|
||||||
"ssd"
|
# "ssd"
|
||||||
"compress=zstd:3"
|
"compress=zstd:3"
|
||||||
"x-systemd.device-timeout=0"
|
"x-systemd.device-timeout=0"
|
||||||
"space_cache=v2"
|
"space_cache=v2"
|
||||||
@ -84,6 +88,19 @@
|
|||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "compress=zstd:3" "space_cache=v2" "commit=120" "datacow" ];
|
options = [ "compress=zstd:3" "space_cache=v2" "commit=120" "datacow" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/mnt/hnbox" = {
|
||||||
|
device = "/dev/mapper/hnbox";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "compress=zstd:3" "space_cache=v2" "commit=120" "datacow" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/mnt/seedbox" = {
|
||||||
|
device = "/dev/mapper/seedbox";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "compress=zstd:3" "space_cache=v2" "commit=120" "datacow" ];
|
||||||
|
};
|
||||||
|
|
||||||
fileSystems."/mnt/parity" = {
|
fileSystems."/mnt/parity" = {
|
||||||
device = "/dev/disk/by-uuid/643b727a-555d-425c-943c-62f5b93631c9";
|
device = "/dev/disk/by-uuid/643b727a-555d-425c-943c-62f5b93631c9";
|
||||||
fsType = "xfs";
|
fsType = "xfs";
|
||||||
@ -91,17 +108,17 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/disk/by-uuid/eb5b3650-f709-46a1-8d63-7f05ffd5e6d4";
|
device = "/dev/disk/by-uuid/c574cb53-dc40-46db-beff-0fe8a4787156";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot/efi" = {
|
fileSystems."/boot/efi" = {
|
||||||
device = "/dev/disk/by-uuid/78B5-4717";
|
device = "/dev/disk/by-uuid/CBE7-5DEB";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[{ device = "/dev/disk/by-uuid/7b9f7369-d24d-4b54-95a6-853626eb45a7"; }];
|
[{ device = "/dev/disk/by-uuid/f41cc85e-9963-46c1-9385-0748e670638d"; }];
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||||
@ -117,10 +134,10 @@
|
|||||||
cpu.intel.updateMicrocode = lib.mkDefault true;
|
cpu.intel.updateMicrocode = lib.mkDefault true;
|
||||||
bluetooth.enable = true;
|
bluetooth.enable = true;
|
||||||
# huion driver
|
# huion driver
|
||||||
opentabletdriver = {
|
# opentabletdriver = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
daemon.enable = true;
|
# daemon.enable = true;
|
||||||
};
|
# };
|
||||||
# nvidia driver
|
# nvidia driver
|
||||||
nvidia.modesetting.enable = true;
|
nvidia.modesetting.enable = true;
|
||||||
opengl = {
|
opengl = {
|
||||||
@ -132,4 +149,3 @@
|
|||||||
# lib.mkDefault config.hardware.enableRedistributableFirmware;
|
# lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user