changed login shell to fern, added fern configuration

This commit is contained in:
2026-02-20 01:31:04 -05:00
parent b188e29dfd
commit 2a0116c336
19 changed files with 463 additions and 118 deletions

View File

@@ -1,5 +1,8 @@
{ slash, pkgs, username, ... }:
{ inputs, pkgs, username, ... }:
let
fern = inputs.fern.packages.${pkgs.stdenv.hostPlatform.system}.default;
in
{
imports = [ ./hardware.nix ];
@@ -39,7 +42,7 @@
${username} = {
isNormalUser = true;
initialPassword = "1234";
shell = pkgs.zsh;
shell = fern;
extraGroups = [ "input" "wheel" "persist" "libvirtd" ];
};
};

View File

@@ -1,4 +1,8 @@
{ slash, pkgs, username, ... }:
{ inputs, pkgs, username, ... }:
let
fern = inputs.fern.packages.${pkgs.stdenv.hostPlatform.system}.default;
in
{
imports = [
./hardware.nix
@@ -33,6 +37,8 @@
shells = [ pkgs.myPkgs.slash pkgs.zsh pkgs.bash ];
};
programs.fern.enable = true;
users = {
groups.persist = { };
groups.davfs2 = { };
@@ -41,7 +47,7 @@
${username} = {
isNormalUser = true;
initialPassword = "1234";
shell = pkgs.zsh;
shell = pkgs.fern;
extraGroups = [ "davfs2" "input" "wheel" "persist" "libvirtd" ];
};
};