From 9248250a065e85488b8e09307daee46a6b6ea268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Wed, 30 Jan 2019 16:12:14 +0100 Subject: [PATCH] Fucking minimalize --- systems/catullus/config.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/systems/catullus/config.nix b/systems/catullus/config.nix index 3334902..98ec438 100644 --- a/systems/catullus/config.nix +++ b/systems/catullus/config.nix @@ -1,8 +1,8 @@ { config, pkgs, ... }: -let vimConfig = import ../../dot/vim.nix { inherit config pkgs; }; -in { +/* let vimConfig = import ../../dot/vim.nix { inherit config pkgs; }; +in */ { imports = [ - ../../configs/shells.nix + # ../../configs/shells.nix ]; boot.loader.grub.enable = false; @@ -10,13 +10,11 @@ in { networking.hostName = "catullus"; + /* networking.wireless = { enable = true; networks.Aether = { pskRaw = "e1b18af54036c5c9a747fe681c6a694636d60a5f8450f7dec0d76bc93e2ec85a"; }; }; - - services.openssh.enable = true; - environment.variables.EDITOR = "vim"; environment.variables.HTOPRC = toString ../../dot/htop.nix; @@ -32,6 +30,9 @@ in { }; }) ]; + */ + + services.openssh.enable = true; users.users.kfm = { name = "kfm"; @@ -41,6 +42,6 @@ in { group = "users"; extraGroups = [ "wheel" ]; hashedPassword = "$6$w9hXyGFl/.IZBXk$5OiWzS1G.5hImhh1YQmZiCXYNAJhi3X6Y3uSLupJNYYXPLMsQpx2fwF4Xr2uYzGMV8Foqh8TgUavx1APD9rcb/"; - shell = pkgs.zsh; + shell = pkgs.bash; }; }