1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

Fucking minimalize

This commit is contained in:
Kierán Meinhardt
2019-01-30 16:12:14 +01:00
parent 3517b9e700
commit 9248250a06

View File

@@ -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;
};
}