trying xonsh

This commit is contained in:
Julia Lange 2023-12-04 17:43:21 -08:00
parent d1eb51d3e9
commit 767f7fbb62
2 changed files with 13 additions and 3 deletions

View file

@ -10,7 +10,7 @@ let
in {
nix.package = pkgs.nixUnstable;
imports =
[
[
# Hardware Specific Configuration
./${systemType}.nix
@ -23,10 +23,11 @@ in {
./modules/audio/pipewire
./modules/shell/fish
#./modules/shell/fish
./modules/shell/xonsh
./modules/network/browsers/librewolf
./modules/network/syncthing
./modules/login/greetd
];

View file

@ -0,0 +1,9 @@
{ config, pkgs, lib, ... }:
{
programs.xonsh.enable = true;
users.defaultUserShell = pkgs.xonsh;
environment.shells = with pkgs; [ xonsh ];
}