Compare commits

...

5 Commits

Author SHA1 Message Date
LUCAZEAU Alexandre b9cd78e43a ADD nitrokey support 2023-11-25 21:19:34 +01:00
LUCAZEAU Alexandre b6908d9fb5 remove guake
add thunderbird
2023-11-25 21:18:47 +01:00
LUCAZEAU Alexandre 06ce7c704c Merge branch 'main' of git.atlanticaweb.fr:alexandre/nixos-config 2023-11-11 22:09:29 +01:00
LUCAZEAU Alexandre 7fbb88d06c ADD emacs 2023-10-26 16:37:07 +02:00
LUCAZEAU Alexandre 07ac227763 ADD freetube 2023-10-26 14:19:17 +02:00
4 changed files with 18 additions and 1 deletions

View File

@ -7,6 +7,7 @@
../../../modules/neovim.nix
../../../modules/tmux.nix
../../../modules/git.nix
../../../modules/emacs.nix
];
# Home Manager needs a bit of information about you and the paths it should
# manage.

View File

@ -37,10 +37,11 @@
dig
vlc
pinta
# python39Packages.grip
linphone
graphviz
freecad
freetube
thunderbird
];
nixpkgs.config.permittedInsecurePackages = [ "ferdi-5.8.1" ];
}

View File

@ -11,6 +11,7 @@
./services.nix
./extra_hw.nix
./gnome.nix
./nitrokey.nix
];
boot = {

View File

@ -0,0 +1,14 @@
{config, pkgs, lib, ... }:
{
hardware.nitrokey = {
enable = true;
};
services.pcscd.enable = true;
environment.systemPackages = with pkgs; [
nitrokey-app
];
}