enable xonsh

This commit is contained in:
Andreas Zweili 2021-12-24 10:44:33 +01:00
parent d3a9e90d61
commit b3ec29ecd7
2 changed files with 13 additions and 0 deletions

View File

@ -10,6 +10,7 @@
./docker.nix
./restic
./droidcam
./xonsh
];
networking = {

12
modules/xonsh/default.nix Normal file
View File

@ -0,0 +1,12 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs, ... }:
{
programs.xonsh.enable = true;
users.users.andreas = {
shell = pkgs.xonsh;
};
}