forked from poz/niksos
I think this fixes the server
This commit is contained in:
parent
5f5a985efe
commit
4769ad4ee7
2 changed files with 11 additions and 7 deletions
|
@ -24,16 +24,24 @@
|
|||
|
||||
programs.zsh.enable = true;
|
||||
|
||||
users.users.jacek = {
|
||||
users.users.chmura = {
|
||||
isNormalUser = true;
|
||||
extraGroups = ["wheel" "networkmanager"];
|
||||
extraGroups = ["wheel"];
|
||||
shell = pkgs.zsh;
|
||||
packages = with pkgs; [
|
||||
curl
|
||||
wget
|
||||
neovim
|
||||
neofetch
|
||||
git
|
||||
wireguard-tools
|
||||
];
|
||||
};
|
||||
|
||||
environment = {
|
||||
shells = with pkgs; [zsh];
|
||||
pathsToLink = [ "/share/zsh" ];
|
||||
sessionVariables = rec {
|
||||
sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -17,7 +17,6 @@ in
|
|||
{
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Use the GRUB 2 boot loader.
|
||||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
|
||||
|
@ -26,9 +25,6 @@ in
|
|||
|
||||
time.timeZone = "Europe/Warsaw";
|
||||
|
||||
# Enable the X11 windowing system.
|
||||
# services.xserver.enable = true;
|
||||
|
||||
nix.settings = {
|
||||
experimental-features = [
|
||||
"flakes"
|
||||
|
|
Loading…
Reference in a new issue