mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
refactor: merge into one file
This commit is contained in:
parent
03ab7b610b
commit
00008ec704
@ -15,7 +15,6 @@
|
||||
../../modules/base.nix
|
||||
../../modules/programs.nix
|
||||
../../modules/git.nix
|
||||
../../modules/zsh.nix
|
||||
../../modules/print-and-scan.nix
|
||||
../../modules/fde-ssh-unlock.nix
|
||||
../../modules/nextcloud-integration.nix
|
||||
|
@ -15,7 +15,6 @@
|
||||
../../modules/base.nix
|
||||
../../modules/programs.nix
|
||||
../../modules/git.nix
|
||||
../../modules/zsh.nix
|
||||
../../modules/print-and-scan.nix
|
||||
../../modules/fde-ssh-unlock.nix
|
||||
../../modules/nextcloud-integration.nix
|
||||
|
@ -1,10 +1,14 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# https://nixos.wiki/wiki/Command_Shell
|
||||
# https://nixos.wiki/wiki/Zsh
|
||||
programs.zsh.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
|
||||
# Inside the following Home Manager configuration block,
|
||||
# `config` refers to Home Manager configuration.
|
||||
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
@ -31,6 +35,5 @@
|
||||
theme = "agnoster";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
@ -1,8 +0,0 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# https://nixos.wiki/wiki/Command_Shell
|
||||
# https://nixos.wiki/wiki/Zsh
|
||||
programs.zsh.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
}
|
Loading…
Reference in New Issue
Block a user