nixos-config/profiles/personal/configuration.nix

229 lines
5.8 KiB
Nix
Raw Normal View History

2023-04-23 02:12:52 +05:30
# 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).
{ config, lib, pkgs, blocklist-hosts, myName, myHostname, myTheme, myBackgroundUrl, myBackgroundSha256, ... }:
2023-06-18 09:18:58 +05:30
let blocklist = builtins.readFile "${blocklist-hosts}/alternates/gambling-porn/hosts";
in
2023-04-23 02:12:52 +05:30
{
imports =
[ ../../system/hardware-configuration.nix
../../system/style/stylix.nix
2023-04-23 02:12:52 +05:30
];
nix.nixPath = [ "nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos"
"nixos-config=$HOME/dotfiles/system/configuration.nix"
"/nix/var/nix/profiles/per-user/root/channels"
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Need some flatpaks
services.flatpak.enable = true;
xdg.portal.enable = true;
2023-04-23 02:12:52 +05:30
# Doas instead of sudo
security.doas.enable = true;
security.sudo.enable = false;
security.doas.extraRules = [{
users = [ "${myName}" ];
2023-04-23 02:12:52 +05:30
keepEnv = true;
persist = true;
}];
2023-05-24 05:26:09 +05:30
# Pipewire
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
2023-05-24 07:18:47 +05:30
# Kernel modules
boot.kernelModules = [ "i2c-dev" "i2c-piix4" ];
2023-04-23 02:12:52 +05:30
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
# Setup keyfile
boot.initrd.secrets = {
"/crypto_keyfile.bin" = null;
};
2023-06-21 04:01:49 +05:30
networking.hostName = myHostname; # Define your hostname.
2023-04-23 02:12:52 +05:30
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
2023-06-18 09:18:58 +05:30
networking.extraHosts = ''
"${blocklist}"
'';
2023-04-23 02:12:52 +05:30
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "America/Chicago";
# 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";
};
services.gnome = {
gnome-keyring.enable = true;
};
services.upower.enable = true;
services.dbus = {
enable = true;
packages = [ pkgs.dconf ];
};
programs.dconf = {
enable = true;
# packages = [ pkgs.dconf ];
};
# Configure X11
services.xserver = {
enable = true;
layout = "us";
xkbVariant = "";
xkbOptions = "caps:escape";
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
};
displayManager = {
lightdm.enable = true;
defaultSession = "none+xmonad";
};
libinput = {
touchpad.disableWhileTyping = true;
};
2023-04-23 02:12:52 +05:30
};
services.xserver.displayManager.sessionCommands = ''
xset -dpms
xset s blank
xset r rate 350 50
xset s 300
${pkgs.lightlocker}/bin/light-locker --idle-hint &
'';
# Bluetooth
# hardware.bluetooth.enable = true;
# services.blueman.enable = true;
systemd.services.upower.enable = true;
systemd.services.auto-cpufreq.enable = true;
users.defaultUserShell = pkgs.zsh;
# Define a user account. Don't forget to set a password with passwd.
users.users.${myName} = {
2023-04-23 02:12:52 +05:30
isNormalUser = true;
2023-06-06 00:43:39 +05:30
description = "Emmet";
2023-04-23 02:12:52 +05:30
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [];
2023-06-07 19:08:52 +05:30
uid = 1000;
2023-04-23 02:12:52 +05:30
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
zsh
auto-cpufreq
git
2023-06-02 05:22:07 +05:30
# openrgb-with-all-plugins
2023-04-23 02:12:52 +05:30
(pkgs.writeScriptBin "sudo" ''exec doas "$@"'')
];
2023-05-24 07:18:47 +05:30
# OpenRGB setup
2023-06-02 05:22:07 +05:30
# services.hardware.openrgb = {
# enable = true;
# motherboard = "amd";
#};
2023-05-24 07:18:47 +05:30
2023-04-23 02:12:52 +05:30
environment.shells = with pkgs; [ zsh ];
2023-05-08 04:17:40 +05:30
programs.zsh.enable = true;
2023-04-23 02:12:52 +05:30
fonts.fonts = with pkgs; [
# Fonts
(nerdfonts.override { fonts = [ "Inconsolata" ]; })
powerline
inconsolata
inconsolata-nerdfont
iosevka
font-awesome
ubuntu_font_family
terminus_font
2023-06-07 19:08:52 +05:30
gamemode
2023-06-16 03:23:33 +05:30
openvpn
];
2023-04-23 02:12:52 +05:30
# 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.
# services.openssh.enable = true;
# Firewall
networking.firewall.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
2023-06-16 03:23:33 +05:30
environment.etc.openvpn.source = "${pkgs.update-resolv-conf}/libexec/openvpn";
2023-04-23 02:12:52 +05:30
# Printing
services.printing.enable = true;
services.avahi.enable = true;
services.avahi.nssmdns = true;
services.avahi.openFirewall = true;
# OpenGL
hardware.opengl.enable = true;
2023-06-07 19:08:52 +05:30
# Feral GameMode
programs.gamemode.enable = true;
2023-04-23 02:12:52 +05:30
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# 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 = "22.11"; # Did you read the comment?
}