Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Antoine RICHARD
nixos-configuration
Commits
ee46cb94
Commit
ee46cb94
authored
Dec 23, 2018
by
Antoine RICHARD
Browse files
fish is fun, but zsh
parent
4a5c6caf
Pipeline
#12
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
configuration.nix
View file @
ee46cb94
...
...
@@ -91,6 +91,12 @@ in
# programs.mtr.enable = true;
# programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
programs
.
zsh
.
ohMyZsh
=
{
enable
=
true
;
plugins
=
[
"git"
"sudo"
];
theme
=
"bira"
;
};
# List services that you want to enable:
# Enable the OpenSSH daemon.
...
...
@@ -138,13 +144,13 @@ in
# services.xserver.desktopManager.plasma5.enable = true;
# Define a user account.
programs
.
fi
sh
.
enable
=
true
;
programs
.
z
sh
.
enable
=
true
;
users
.
users
.
arichard
=
{
isNormalUser
=
true
;
home
=
"/home/arichard"
;
description
=
"A. Richard"
;
extraGroups
=
[
"wheel"
"networkmanager"
];
shell
=
pkgs
.
fi
sh
;
shell
=
pkgs
.
z
sh
;
uid
=
1000
;
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment