Fix stuff

main
Julius 2021-11-13 09:43:43 +01:00
parent 90e5cafe53
commit 740d6ed8b9
Signed by: j00lz
GPG Key ID: AF241B0AA237BBA2
3 changed files with 7 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
keys

View File

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
imports = [ ./users ];
@ -16,6 +16,8 @@
# Set your time zone.
time.timeZone = "Europe/Amsterdam";
programs.fish.enable = true;
# Optimize nix store by hardlinking identitical files.
nix = {
package = pkgs.nixUnstable;

View File

@ -5,6 +5,8 @@
programs.neovim.enable = true;
programs.neovim.viAlias = true;
users.defaultUserShell = pkgs.fish;
users.extraUsers.jdejeu = {
isNormalUser = true;
home = "/home/jdejeu";
@ -22,6 +24,6 @@
openssh.authorizedKeys.keys =
config.users.users.jdejeu.openssh.authorizedKeys.keys;
# Also use zsh for root
shell = pkgs.zsh;
shell = pkgs.fish;
};
}