blob: cafe469b52bf61b086d983c12494da5fd433ee3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{ config, pkgs, ... }:
{
boot.loader = {
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
memtest86.enable = true;
};
timeout = 3;
};
environment.systemPackages = with pkgs; [
kakoune
];
hardware.enableRedistributableFirmware = true;
nix.settings.experimental-features = [
"flakes"
"nix-command"
];
programs = {
git = {
enable = true;
package = pkgs.gitMinimal;
};
nano.enable = false;
zsh = {
enable = true;
setOptions = [ "HIST_IGNORE_ALL_DUPS" ];
shellInit = ''
PS1="%n@%m %~ %# "
'';
};
};
users = {
defaultUserShell = pkgs.zsh;
users.rosa = {
extraGroups = [ "wheel" ];
initialPassword = "";
isNormalUser = true;
shell = pkgs.zsh;
};
};
}
|