mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-07 00:17:24 +08:00
116 lines
3.3 KiB
Nix
116 lines
3.3 KiB
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
||
{
|
||
imports =
|
||
[
|
||
(modulesPath + "/installer/scan/not-detected.nix")
|
||
];
|
||
|
||
fileSystems."/" =
|
||
{
|
||
device = "/dev/disk/by-uuid/e0516457-2611-4fbd-afdd-b96618c15fc9";
|
||
fsType = "ext4";
|
||
};
|
||
fileSystems."/boot" =
|
||
{
|
||
device = "/dev/disk/by-uuid/5C46-63E4";
|
||
fsType = "vfat";
|
||
};
|
||
swapDevices =
|
||
[{ device = "/dev/disk/by-uuid/0bb9c031-1533-40bb-81ae-f956ba84568d"; }];
|
||
|
||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||
# high-resolution display
|
||
hardware.video.hidpi.enable = lib.mkDefault true;
|
||
|
||
# Try to fix default shitty sound experience on Carbon
|
||
hardware.pulseaudio = {
|
||
enable = true;
|
||
support32Bit = true;
|
||
};
|
||
|
||
# FIXME: https://github.com/NixOS/nixpkgs/pull/97972#issuecomment-834774554
|
||
services.tlp.enable = false;
|
||
|
||
# Use the systemd-boot EFI boot loader.
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
|
||
boot.initrd.kernelModules = [ ];
|
||
boot.kernelModules = [ "kvm-intel" ];
|
||
boot.extraModulePackages = [ ];
|
||
# boot.kernelPackages = pkgs.linuxPackages_latest;
|
||
boot.supportedFilesystems = [ "ntfs" ];
|
||
|
||
nixpkgs.config.allowUnfree = true;
|
||
nix = {
|
||
package = pkgs.nixFlakes;
|
||
extraOptions = ''
|
||
experimental-features = nix-command flakes
|
||
'';
|
||
trustedUsers = [ "root" "srid" ];
|
||
};
|
||
|
||
networking.hostName = "x1c7";
|
||
networking.networkmanager.enable = true;
|
||
|
||
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
||
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
||
# replicates the default behaviour.
|
||
networking.useDHCP = false;
|
||
networking.interfaces.enp0s31f6.useDHCP = true;
|
||
networking.interfaces.wlp0s20f3.useDHCP = true;
|
||
|
||
programs.mosh.enable = true;
|
||
|
||
services.xserver.enable = true;
|
||
#services.xserver.displayManager.gdm.enable = true;
|
||
#services.xserver.desktopManager.gnome.enable = true;
|
||
|
||
users.users.srid = {
|
||
isNormalUser = true;
|
||
extraGroups = [ "wheel" "networkmanager" "audio" ]; # Enable ‘sudo’ for the user.
|
||
};
|
||
|
||
# List packages installed in system profile. To search, run:
|
||
# $ nix search wget
|
||
environment.systemPackages = with pkgs; [
|
||
pulsemixer
|
||
brave
|
||
fzf
|
||
gnome3.gnome-tweaks
|
||
gnome3.gnome-sound-recorder
|
||
google-chrome
|
||
htop
|
||
ripgrep
|
||
signal-desktop
|
||
vlc
|
||
vscode
|
||
mpv
|
||
alacritty
|
||
youtube-dl
|
||
# snes9x-gtk
|
||
obsidian
|
||
inkscape
|
||
newsflash
|
||
];
|
||
|
||
services = {
|
||
openssh.enable = true;
|
||
};
|
||
|
||
# Open ports in the firewall.
|
||
# networking.firewall.allowedTCPPorts = [ ... ];
|
||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||
# Or disable the firewall altogether.
|
||
# networking.firewall.enable = false;
|
||
|
||
# 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. It‘s 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 = "20.09"; # Did you read the comment?
|
||
|
||
}
|