Fix stuff

This commit is contained in:
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 ]; imports = [ ./users ];
@ -16,6 +16,8 @@
# Set your time zone. # Set your time zone.
time.timeZone = "Europe/Amsterdam"; time.timeZone = "Europe/Amsterdam";
programs.fish.enable = true;
# Optimize nix store by hardlinking identitical files. # Optimize nix store by hardlinking identitical files.
nix = { nix = {
package = pkgs.nixUnstable; package = pkgs.nixUnstable;

View file

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