trying xonsh
This commit is contained in:
parent
8428e4fe84
commit
0e90d6522c
2 changed files with 13 additions and 3 deletions
|
|
@ -10,7 +10,7 @@ let
|
||||||
in {
|
in {
|
||||||
nix.package = pkgs.nixUnstable;
|
nix.package = pkgs.nixUnstable;
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
# Hardware Specific Configuration
|
# Hardware Specific Configuration
|
||||||
./${systemType}.nix
|
./${systemType}.nix
|
||||||
|
|
||||||
|
|
@ -23,10 +23,11 @@ in {
|
||||||
|
|
||||||
./modules/audio/pipewire
|
./modules/audio/pipewire
|
||||||
|
|
||||||
./modules/shell/fish
|
#./modules/shell/fish
|
||||||
|
./modules/shell/xonsh
|
||||||
./modules/network/browsers/librewolf
|
./modules/network/browsers/librewolf
|
||||||
./modules/network/syncthing
|
./modules/network/syncthing
|
||||||
|
|
||||||
./modules/login/greetd
|
./modules/login/greetd
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
9
modules/shell/xonsh/default.nix
Normal file
9
modules/shell/xonsh/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.xonsh.enable = true;
|
||||||
|
|
||||||
|
users.defaultUserShell = pkgs.xonsh;
|
||||||
|
|
||||||
|
environment.shells = with pkgs; [ xonsh ];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue