mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 17:53:17 +01:00
34 lines
470 B
Nix
34 lines
470 B
Nix
|
{
|
||
|
nix-config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
imports = with nix-config.nixosModules; [
|
||
|
system
|
||
|
];
|
||
|
|
||
|
users.defaultUserShell = pkgs.fish;
|
||
|
|
||
|
programs = {
|
||
|
fish.enable = true;
|
||
|
neovim.enable = true;
|
||
|
};
|
||
|
|
||
|
environment = {
|
||
|
systemPackages = with pkgs; [ kitty ];
|
||
|
shells = with pkgs; [ fish ];
|
||
|
|
||
|
variables = {
|
||
|
TERM = "xterm-kitty";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
firewall.allowedTCPPorts = [ 80 ];
|
||
|
};
|
||
|
|
||
|
services.wordpress.sites.localhost = { };
|
||
|
}
|