Compare commits

..

No commits in common. "5105f8b1a47e6261428a4f9cd1d4909f23f5d9ea" and "4370685504c2d46a60b898b5cf35e22b71bab30c" have entirely different histories.

4 changed files with 2 additions and 22 deletions

View file

@ -1,4 +1,4 @@
{ self, lib, ... }:
{ self, ... }:
let
inherit (self.inputs)
disko
@ -46,7 +46,6 @@ let
}
{
my.profiles.core.enable = true;
my.profiles.zsh.enable = lib.mkDefault true;
}
../modules
../profiles

View file

@ -19,6 +19,7 @@ in
users.users.nixremote = {
isSystemUser = true;
group = "nixremote";
shell = pkgs.bashInteractive;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGYSzDdxqaNHmaaLqEvOK/vB65zvqoCebI3Nxzgg5smq root@workman"
];

View file

@ -23,6 +23,5 @@
./update
./usb-iso
./webcam
./zsh
];
}

View file

@ -1,19 +0,0 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.profiles.zsh;
in
{
options.my.profiles.zsh = with lib; {
enable = mkEnableOption "zsh profile";
};
config = lib.mkIf cfg.enable {
users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true;
};
}