mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Add home
This commit is contained in:
parent
e81d8c9be4
commit
e2e390efdf
11 changed files with 96 additions and 100 deletions
|
|
@ -11,6 +11,9 @@
|
|||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
initialPassword = "changeme";
|
||||
shell = if config.programs.zsh.enable
|
||||
then pkgs.zsh
|
||||
else pkgs.bash;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
];
|
||||
|
||||
options = {
|
||||
mods.desktop.enable = lib.mkEnableOption "enables sound";
|
||||
mods.desktop.enable = lib.mkEnableOption "enables graphical desktop environment";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.mods.desktop.enable {
|
||||
|
|
|
|||
|
|
@ -1,11 +1,15 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
# Default programs
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
wget
|
||||
git
|
||||
];
|
||||
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
|
||||
programs.zsh.enable = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue