nixos/configuration.nix

184 lines
4.8 KiB
Nix
Raw Normal View History

2024-02-26 07:33:11 +00: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-02-26 09:14:08 +00:00
{ config, pkgs, inputs, ... }:
2024-02-26 07:33:11 +00:00
{
2024-02-28 12:27:51 +00:00
imports = [ inputs.home-manager.nixosModules.default ];
2024-02-26 07:33:11 +00:00
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# 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 13:01:32 +00:00
fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
];
2024-02-26 07:33:11 +00: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;
# Enable the XFCE Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
2024-02-27 13:01:32 +00:00
services.xserver.desktopManager.budgie.enable = true;
2024-02-27 14:05:04 +00:00
# services.xserver.windowManager.dwm.enable = true;
2024-02-26 07:33:11 +00:00
# Configure keymap in X11
services.xserver = {
xkb = {
layout = "us";
variant = "";
};
};
# Enable CUPS to print documents.
services.printing.enable = true;
# 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;
};
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
2024-05-29 21:14:44 +00:00
nix.settings.auto-optimise-store = true;
2024-02-26 07:33:11 +00: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; [
rustup
2024-02-26 08:23:21 +00:00
neovim
2024-02-29 05:09:02 +00:00
tree-sitter
2024-02-27 14:22:03 +00:00
gparted
2024-02-26 07:33:11 +00:00
fish
2024-02-28 09:41:29 +00:00
gnumake
2024-02-26 07:33:11 +00:00
zig
go
nil
2024-02-28 08:58:11 +00:00
xclip
2024-02-29 05:09:02 +00:00
python3
2024-02-26 07:33:11 +00:00
wezterm
2024-02-26 08:23:21 +00:00
firefox
2024-02-28 11:58:39 +00:00
fzf
2024-02-28 10:16:39 +00:00
tree
2024-02-26 07:33:11 +00:00
lazygit
ripgrep
nodejs_21
dotnet-sdk_8
unzip
nixpkgs-fmt
2024-02-26 08:23:21 +00:00
lua-language-server
stylua
steam
spotify
2024-02-27 13:01:32 +00:00
discord
2024-02-26 08:44:30 +00:00
git-credential-oauth
2024-02-26 07:33:11 +00:00
];
};
# Enable automatic login for the user.
services.xserver.displayManager.autoLogin = {
enable = true;
user = "ravenshade";
};
2024-02-26 09:14:08 +00:00
home-manager = {
extraSpecialArgs = { inherit inputs; };
users = { "ravenshade" = import ./home.nix; };
};
2024-02-26 07:33:11 +00:00
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
programs.bash = {
interactiveShellInit = ''
if [[ $(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm) != "fish" && -z ''${BASH_EXECUTION_STRING} ]]
then
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=""
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
fi
'';
};
2024-02-27 13:01:32 +00:00
# programs.hyprland.enable = true;
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
2024-02-26 07:33:11 +00:00
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
2024-02-26 08:23:21 +00:00
neovim
curl
git
2024-02-26 07:33:11 +00: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 14:24:32 +00:00
services.openssh.enable = true;
2024-02-26 07:33:11 +00: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?
}