Merge branch 'master' of ssh://git.nx2.site:20022/nx2/dotfiles

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-05-29 22:18:12 +02:00
14 changed files with 409 additions and 58 deletions

View File

@@ -1,4 +1,4 @@
{ config, lib, pkgs, user, host, allowed, secrets, rice, nvidia, ... }:
{ config, lib, pkgs, pkgs-unstable, user, host, allowed, secrets, rice, nvidia, ... }:
let
in
{
@@ -13,6 +13,7 @@ in
./system-modules/networking.nix
./system-modules/virtualisation.nix
./system-modules/sshd.nix
# ./system-modules/syncthing.nix
./system-modules/hsmw.nix
./system-modules/docker.nix
./system-modules/health_reminder.nix
@@ -62,6 +63,7 @@ in
# $ nix search wget
environment.systemPackages = with pkgs; [
git
lazygit # home-manager module is bugged
git-crypt
wget
curl
@@ -77,17 +79,21 @@ in
blueman
dmidecode
file
];
] ++ (with pkgs-unstable; [
sendme
]);
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
] ++ [
rice.font.base.package
rice.font.code.package
];
] ++ (with rice.font; [
base.package
code.package
]) ++ (with pkgs-unstable; [
newcomputermodern
]);
programs.gnupg.agent = {
enable = true;