dates = lib.mkDefault "weekly";
options = lib.mkDefault "--delete-older-than 30d";
};
+ nixPath = lib.mkForce [];
};
+environment.variables.NIXPKGS_CONFIG = lib.mkForce "";
documentation.nixos = {
- enable = false; # NOTE: useless on a server, and CPU intensive.
+ enable = lib.mkDefault false; # NOTE: useless on a server, and CPU intensive.
};
-console.font = "Lat2-Terminus16";
+console.font = "Lat2-Terminus16";
console.keyMap = lib.mkDefault "fr";
i18n.defaultLocale = "fr_FR.UTF-8";
nixpkgs.config.allowUnfree = false;
usePredictableInterfaceNames = true;
};
-services = {
- openssh = {
- enable = true;
- passwordAuthentication = false;
- };
- journald = {
- extraConfig = ''
- Compress=true
- MaxRetentionSec=1month
- Storage=persistent
- SystemMaxUse=128M
- '';
- };
+services.journald = {
+ extraConfig = ''
+ Compress=true
+ MaxRetentionSec=1month
+ Storage=persistent
+ SystemMaxUse=128M
+ '';
+};
+
+services.openssh = {
+ enable = true;
+ passwordAuthentication = false;
};
environment.systemPackages = with pkgs; [
'';
shellAliases = {
cl = "clear";
- l = "ls -alh";
+ l = "ls -alh";
ll = "ls -al";
ls = "ls --color=tty";
mem = "ps -e -orss=,user=,args= | sort -b -k1,1n";
s="sudo systemctl";
st="sudo systemctl status";
u="systemctl --user";
+ ut="systemctl --user status";
j="sudo journalctl -u";
nixos-clean="sudo nix-collect-garbage -d";
nixos-history="sudo nix-env --list-generations --profile /nix/var/nix/profiles/system";
nixos-rollback="sudo nixos-rebuild switch --rollback";
- nixos-update="sudo nix-channel --update";
- nixos-upgrade="sudo nixos-rebuild switch";
- nixos-upstream="sudo nix-channel --list";
};
};
gnupg.agent.pinentryFlavor = "curses";