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-05-30 05:40:57 +00:00
|
|
|
|
{ pkgs, inputs, ... }:
|
2024-02-26 07:33:11 +00:00
|
|
|
|
|
|
|
|
|
{
|
2024-05-31 09:29:49 +00:00
|
|
|
|
imports = [
|
|
|
|
|
inputs.home-manager.nixosModules.default
|
2024-06-03 04:32:15 +00:00
|
|
|
|
./modules
|
2024-05-31 08:50:59 +00:00
|
|
|
|
];
|
2024-02-26 07:33:11 +00:00
|
|
|
|
|
|
|
|
|
# Bootloader.
|
2024-05-31 08:50:59 +00:00
|
|
|
|
# boot.loader.systemd-boot.enable = true;
|
|
|
|
|
# boot.loader.efi.canTouchEfiVariables = true;
|
2024-02-26 07:33:11 +00: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 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.
|
2024-05-31 08:50:59 +00:00
|
|
|
|
# services.xserver.displayManager.lightdm.enable = true;
|
|
|
|
|
|
2024-06-07 01:42:54 +00:00
|
|
|
|
snowhawk.dwm.enable = true;
|
2024-05-31 08:50:59 +00:00
|
|
|
|
|
2024-06-07 01:42:54 +00:00
|
|
|
|
# services.xserver.desktopManager.budgie.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;
|
|
|
|
|
|
2024-06-26 08:50:53 +00:00
|
|
|
|
services.envfs.enable = true;
|
|
|
|
|
|
2024-02-26 07:33:11 +00: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-30 05:42:45 +00:00
|
|
|
|
nix.settings = {
|
|
|
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
|
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; [
|
2024-05-29 21:15:43 +00:00
|
|
|
|
fish
|
|
|
|
|
ripgrep
|
|
|
|
|
lazygit
|
|
|
|
|
unzip
|
|
|
|
|
fzf
|
|
|
|
|
tree
|
|
|
|
|
|
2024-06-26 09:16:30 +00:00
|
|
|
|
nix-output-monitor
|
|
|
|
|
|
2024-02-27 14:22:03 +00:00
|
|
|
|
gparted
|
2024-05-31 09:34:59 +00:00
|
|
|
|
arandr
|
|
|
|
|
|
2024-05-30 05:39:56 +00:00
|
|
|
|
# steam
|
|
|
|
|
# spotify
|
|
|
|
|
# discord
|
2024-05-29 21:15:43 +00:00
|
|
|
|
|
2024-05-30 05:37:28 +00:00
|
|
|
|
git-credential-oauth
|
|
|
|
|
|
|
|
|
|
xclip
|
|
|
|
|
|
2024-05-29 21:34:47 +00:00
|
|
|
|
rustup
|
2024-02-28 09:41:29 +00:00
|
|
|
|
gnumake
|
2024-02-26 07:33:11 +00:00
|
|
|
|
zig
|
2024-06-28 03:19:23 +00:00
|
|
|
|
gcc
|
2024-02-26 07:33:11 +00:00
|
|
|
|
go
|
2024-02-29 05:09:02 +00:00
|
|
|
|
python3
|
2024-06-06 00:59:42 +00:00
|
|
|
|
nodejs_22
|
2024-05-30 05:37:28 +00:00
|
|
|
|
# dotnet-sdk_8
|
2024-02-26 07:33:11 +00:00
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Enable automatic login for the user.
|
2024-06-06 00:59:42 +00:00
|
|
|
|
services.displayManager.autoLogin = {
|
2024-02-26 07:33:11 +00:00
|
|
|
|
enable = true;
|
|
|
|
|
user = "ravenshade";
|
|
|
|
|
};
|
|
|
|
|
|
2024-02-26 09:14:08 +00:00
|
|
|
|
home-manager = {
|
|
|
|
|
extraSpecialArgs = { inherit inputs; };
|
|
|
|
|
users = { "ravenshade" = import ./home.nix; };
|
2024-06-28 07:12:22 +00:00
|
|
|
|
# backupFileExtension = "backup";
|
2024-02-26 09:14:08 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-02-26 07:33:11 +00:00
|
|
|
|
# Allow unfree packages
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
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-06-28 05:34:25 +00:00
|
|
|
|
killall
|
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?
|
|
|
|
|
}
|