fix: better style

This commit is contained in:
Ranomier 2025-05-08 20:30:50 +02:00
parent 698983167b
commit 2da8170c98
6 changed files with 9 additions and 14 deletions

View file

@ -1,7 +1,8 @@
{pkgs, ...}: {
# Enable common container config files in /etc/containers
virtualisation.containers.enable = true;
virtualisation = {
containers.enable = true;
podman = {
enable = true;
@ -15,8 +16,6 @@
};
};
environment.sessionVariables = {
};
# Useful other development tools
environment.systemPackages = with pkgs; [
dive # look into docker image layers

View file

@ -10,4 +10,5 @@
formatted = builtins.concatStringsSep "\n" sortedUnique;
in
formatted;
# TODO: in the far future: add a little alias that greps throgh that file
}

View file

@ -6,17 +6,10 @@
askPassword = "${pkgs.lxqt.lxqt-openssh-askpass}/bin/lxqt-openssh-askpass";
};
# This is using a rec (recursive) expression to set and access XDG_BIN_HOME within the expression
# For more on rec expressions see https://nix.dev/tutorials/first-steps/nix-language#recursive-attribute-set-rec
environment.sessionVariables = {
SSH_AUTH_SOCK = "$XDG_RUNTIME_DIR/ssh-agent";
};
environment.systemPackages = with pkgs; [
#ssh-askpass-fullscreen
lxqt.lxqt-openssh-askpass
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;

View file

@ -1,5 +1,3 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
brave
];
environment.systemPackages = [ pkgs.brave ];
}

View file

@ -13,7 +13,10 @@
fira-code-symbols
#droid-sans-mono
(nerdfonts.override {
fonts = ["FiraCode" "DroidSansMono" "JetBrainsMono"];
fonts = [
"FiraCode"
"DroidSansMono""JetBrainsMono"
];
})
];
}

View file

@ -1,5 +1,6 @@
# This file defines overlays
{inArgs, ...}: {
# This one brings our custom packages from the 'pkgs' directory
additions = final: _prev: import ../pkgs final.pkgs;