Compare commits
5 Commits
a9baa4d7e1
...
b9cd78e43a
Author | SHA1 | Date |
---|---|---|
LUCAZEAU Alexandre | b9cd78e43a | |
LUCAZEAU Alexandre | b6908d9fb5 | |
LUCAZEAU Alexandre | 06ce7c704c | |
LUCAZEAU Alexandre | 7fbb88d06c | |
LUCAZEAU Alexandre | 07ac227763 |
|
@ -7,6 +7,7 @@
|
||||||
../../../modules/neovim.nix
|
../../../modules/neovim.nix
|
||||||
../../../modules/tmux.nix
|
../../../modules/tmux.nix
|
||||||
../../../modules/git.nix
|
../../../modules/git.nix
|
||||||
|
../../../modules/emacs.nix
|
||||||
];
|
];
|
||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
# manage.
|
# manage.
|
||||||
|
|
|
@ -37,10 +37,11 @@
|
||||||
dig
|
dig
|
||||||
vlc
|
vlc
|
||||||
pinta
|
pinta
|
||||||
# python39Packages.grip
|
|
||||||
linphone
|
linphone
|
||||||
graphviz
|
graphviz
|
||||||
freecad
|
freecad
|
||||||
|
freetube
|
||||||
|
thunderbird
|
||||||
];
|
];
|
||||||
nixpkgs.config.permittedInsecurePackages = [ "ferdi-5.8.1" ];
|
nixpkgs.config.permittedInsecurePackages = [ "ferdi-5.8.1" ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
./services.nix
|
./services.nix
|
||||||
./extra_hw.nix
|
./extra_hw.nix
|
||||||
./gnome.nix
|
./gnome.nix
|
||||||
|
./nitrokey.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
{config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
hardware.nitrokey = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.pcscd.enable = true;
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
nitrokey-app
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue