nixos/configuration.nix

190 lines
4.5 KiB
Nix
Raw Normal View History

2024-02-25 23:33:11 -08:00
# 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).
2024-05-29 22:40:57 -07:00
{ pkgs, inputs, ... }:
2024-02-25 23:33:11 -08:00
{
2024-05-31 02:29:49 -07:00
imports = [
inputs.home-manager.nixosModules.default
./modules
2024-05-31 01:50:59 -07:00
];
2024-02-25 23:33:11 -08:00
# Bootloader.
2024-06-27 16:23:31 -07:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-02-25 23:33:11 -08:00
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
2024-02-27 05:01:32 -08:00
fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
];
2024-02-25 23:33:11 -08:00
# Set your time zone.
time.timeZone = "America/Los_Angeles";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
# Enable the X11 windowing system.
services.xserver.enable = true;
2024-06-06 18:42:54 -07:00
snowhawk.dwm.enable = true;
2024-05-31 01:50:59 -07:00
2024-06-27 16:23:31 -07:00
# Enable the XFCE Desktop Environment.
# services.xserver.displayManager.lightdm.enable = true;
2024-06-06 18:42:54 -07:00
# services.xserver.desktopManager.budgie.enable = true;
2024-02-25 23:33:11 -08:00
# Configure keymap in X11
services.xserver = {
xkb = {
layout = "us";
variant = "";
};
};
# Enable CUPS to print documents.
services.printing.enable = true;
2024-06-26 01:50:53 -07:00
services.envfs.enable = true;
2024-02-25 23:33:11 -08:00
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
2024-05-29 22:42:45 -07:00
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
2024-02-25 23:33:11 -08:00
programs.nix-ld.enable = true;
# programs.nix-ld.libraries = with pkgs; [
#
# ];
# Define a user account. Don't forget to set a password with passwd.
users.users.ravenshade = {
isNormalUser = true;
description = "Zynh Ludwig";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
2024-05-29 14:15:43 -07:00
fish
ripgrep
lazygit
unzip
fzf
tree
2024-06-27 16:23:31 -07:00
libsecret
2024-05-29 14:15:43 -07:00
2024-06-26 02:16:30 -07:00
nix-output-monitor
2024-02-27 06:22:03 -08:00
gparted
2024-05-31 02:34:59 -07:00
arandr
2024-06-27 16:23:31 -07:00
flameshot
2024-05-31 02:34:59 -07:00
2024-05-29 22:39:56 -07:00
# steam
2024-06-27 16:23:31 -07:00
spotify
discord
xivlauncher
# (xivlauncher.override {
# useSteamRun = false;
# })
2024-05-29 14:15:43 -07:00
2024-05-29 22:37:28 -07:00
git-credential-oauth
xclip
2024-05-29 14:34:47 -07:00
rustup
2024-02-28 01:41:29 -08:00
gnumake
2024-02-25 23:33:11 -08:00
zig
2024-06-27 20:19:23 -07:00
gcc
2024-02-25 23:33:11 -08:00
go
2024-02-28 21:09:02 -08:00
python3
2024-06-05 17:59:42 -07:00
nodejs_22
2024-05-29 22:37:28 -07:00
# dotnet-sdk_8
2024-02-25 23:33:11 -08:00
];
};
# Enable automatic login for the user.
2024-06-05 17:59:42 -07:00
services.displayManager.autoLogin = {
2024-02-25 23:33:11 -08:00
enable = true;
user = "ravenshade";
};
2024-02-26 01:14:08 -08:00
home-manager = {
extraSpecialArgs = { inherit inputs; };
users = { "ravenshade" = import ./home.nix; };
};
2024-02-25 23:33:11 -08:00
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
2024-02-27 05:01:32 -08:00
# programs.hyprland.enable = true;
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
2024-02-25 23:33:11 -08:00
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
2024-02-26 00:23:21 -08:00
neovim
curl
git
2024-06-27 22:34:25 -07:00
killall
2024-02-25 23:33:11 -08:00
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# List services that you want to enable:
# Enable the OpenSSH daemon.
2024-02-27 06:24:32 -08:00
services.openssh.enable = true;
2024-02-25 23:33:11 -08:00
# 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?
}