# 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`). { pkgs, inputs, ... }: { imports = [ inputs.home-manager.nixosModules.default ../../modules ]; fonts.packages = with pkgs; [ (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) ]; # Set your time zone. time.timeZone = "America/Los_Angeles"; boot.tmp.useTmpfs = true; snowhawk = { wake-on-lan.enable = true; dwm.enable = true; syncthing.enable = true; plymouth.enable = true; polkit.enable = true; user.enable = true; }; # Enable CUPS to print documents. services.printing.enable = true; services.envfs.enable = true; hardware.keyboard.uhk.enable = true; programs.dconf.enable = true; # I think I need a gtk theme? gnome-keyring qt.platformTheme = "gtk2"; # Enable automatic login for the user. services.displayManager.autoLogin = { enable = true; user = "ravenshade"; }; home-manager = { users = { "ravenshade" = import ./home.nix; }; backupFileExtension = "backup"; }; environment.systemPackages = with pkgs; [ neovim curl git killall godot_4-mono ]; # Enable trash:/// support services.gvfs.enable = true; # Enable the OpenSSH daemon. services.openssh.enable = true; services.openssh.openFirewall = true; services.avahi.enable = true; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. # networking.firewall.enable = false; # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "23.11"; # Did you read the comment? }