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

50 lines
1.2 KiB
Nix
Raw Normal View History

2019-01-30 11:48:35 +00:00
{ config, pkgs, ... }:
2019-01-30 16:12:14 +01:00
/* let vimConfig = import ../../dot/vim.nix { inherit config pkgs; };
in */ {
2019-01-30 13:56:34 +01:00
imports = [
2019-01-30 16:22:07 +01:00
../../configs/shells.nix
2019-01-30 13:56:34 +01:00
];
2019-01-30 11:48:35 +00:00
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
networking.hostName = "catullus";
2019-01-30 13:56:34 +01:00
2019-01-30 16:12:14 +01:00
/*
2019-01-30 14:00:01 +01:00
networking.wireless = {
2019-01-30 13:56:34 +01:00
enable = true;
networks.Aether = { pskRaw = "e1b18af54036c5c9a747fe681c6a694636d60a5f8450f7dec0d76bc93e2ec85a"; };
};
2019-01-30 15:44:00 +01:00
environment.variables.EDITOR = "vim";
2019-01-30 15:51:19 +01:00
environment.variables.HTOPRC = toString ../../dot/htop.nix;
2019-01-30 15:44:00 +01:00
2019-01-30 13:56:34 +01:00
programs.tmux.enable = true;
2019-01-30 16:17:00 +01:00
*/
2019-01-30 13:56:34 +01:00
environment.systemPackages = with pkgs; [
git
2019-01-30 15:44:00 +01:00
htop
2019-01-30 16:19:20 +01:00
/* (vim_configurable.customize {
2019-01-30 13:56:34 +01:00
name = "kvim";
vimrcConfig = {
customRC = vimConfig.vimrc;
packages.kvim.start = vimConfig.startPackages;
};
2019-01-30 16:19:20 +01:00
})*/
vim
2019-01-30 13:56:34 +01:00
];
2019-01-30 16:12:14 +01:00
services.openssh.enable = true;
2019-01-30 15:44:00 +01:00
users.users.kfm = {
name = "kfm";
description = "Kierán Meinhardt";
home = "/home/kfm";
createHome = true;
group = "users";
extraGroups = [ "wheel" ];
hashedPassword = "$6$w9hXyGFl/.IZBXk$5OiWzS1G.5hImhh1YQmZiCXYNAJhi3X6Y3uSLupJNYYXPLMsQpx2fwF4Xr2uYzGMV8Foqh8TgUavx1APD9rcb/";
2019-01-30 16:12:14 +01:00
shell = pkgs.bash;
2019-01-30 15:44:00 +01:00
};
2019-01-30 11:48:35 +00:00
}