mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 23:26:23 +01:00
37 lines
1,021 B
Nix
37 lines
1,021 B
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ inputs, config, pkgs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
../common.nix
|
||
./proxy.nix
|
||
./vaultwarden.nix
|
||
./nextcloud.nix
|
||
];
|
||
|
||
jade = {
|
||
neovim.enable = true;
|
||
zsh.enable = true;
|
||
};
|
||
|
||
# Use the GRUB 2 boot loader.
|
||
boot.loader.grub.enable = true;
|
||
boot.loader.grub.version = 2;
|
||
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
|
||
|
||
networking.hostName = "schrottserver"; # Define your hostname.
|
||
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
||
|
||
networking.firewall.enable = false;
|
||
|
||
# default settings for stateful data; don't change unless reinstall with newer version
|
||
system.stateVersion = "22.11"; # Did you read the comment?
|
||
|
||
}
|
||
|