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

Setup catullus

This commit is contained in:
Kierán Meinhardt
2019-01-30 13:56:34 +01:00
parent 498215fb07
commit 943d707626
8 changed files with 237 additions and 206 deletions

View File

@@ -1,9 +1,33 @@
{ config, pkgs, ... }:
{
imports = [];
let vimConfig = import ../../dot/vim.nix { inherit config pkgs; };
in {
imports = [
../configs/users.nix
../configs/htop.nix
../configs/shells.nix
];
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
networking.hostName = "catullus";
network.wireless = {
enable = true;
networks.Aether = { pskRaw = "e1b18af54036c5c9a747fe681c6a694636d60a5f8450f7dec0d76bc93e2ec85a"; };
};
services.openssh.enable = true;
programs.tmux.enable = true;
environment.systemPackages = with pkgs; [
git
(vim_configurable.customize {
name = "kvim";
vimrcConfig = {
customRC = vimConfig.vimrc;
packages.kvim.start = vimConfig.startPackages;
};
})
];
}