configs/laptop/configuration.nix
Geir Okkenhaug Jerstad 7bc978c1e0 change to xkb.variant
2024-05-31 22:28:25 +02:00

194 lines
4.2 KiB
Nix

{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./zsh.nix
./tuigreet.nix
./sway.nix
./kitty.nix
#./cosmic.nix
./tty.nix
./aliases.nix
./fonts.nix
./k8s.nix
./tail.nix
./asciidoc.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
zramSwap = {
enable = true;
algorithm = "zstd";
};
# Enable all unfree hardware support.
hardware.firmware = with pkgs; [ firmwareLinuxNonfree ];
hardware.enableAllFirmware = true;
hardware.enableRedistributableFirmware = true;
nixpkgs.config.allowUnfree = true;
services.fwupd.enable = true;
services.fstrim.enable = true;
# Networking
networking.networkmanager.enable = true;
networking.hostName = "idea";
# Enable the OpenSSH daemon.
services.openssh.enable = true;
# Set your time zone.
time.timeZone = "Europe/Oslo";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
# Enable the X11 windowing system.
services.xserver.enable = true;
services.xserver.videoDrivers = [ "amdgpu" ];
# Enable the Desktop Environment.
programs.steam.enable = true;
#services.teamviewer.enable = true;
# Configure keymap in X11
services.xserver = {
xkb.layout = "no";
xkb.variant = "";
};
# Configure console keymap
console = {
font = "Lat2-Terminus16";
keyMap = "no";
};
i18n.extraLocaleSettings = {
LC_ADDRESS = "nb_NO.utf8";
LC_IDENTIFICATION = "nb_NO.utf8";
LC_MEASUREMENT = "nb_NO.utf8";
LC_MONETARY = "nb_NO.utf8";
LC_NAME = "nb_NO.utf8";
LC_NUMERIC = "nb_NO.utf8";
LC_PAPER = "nb_NO.utf8";
LC_TELEPHONE = "nb_NO.utf8";
LC_TIME = "nb_NO.utf8";
};
# Enable CUPS to print documents.
services.printing.enable = false;
# 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;
};
# Enble flakes and other experimental features
nix = {
extraOptions = "experimental-features = nix-command flakes";
package = pkgs.nixFlakes;
};
# Enable nix-2.15.3 for some reaseon something depends on it
nixpkgs.config.permittedInsecurePackages = [
"nix-2.15.3"
];
services.emacs.enable = true;
# User account.
nix.settings.trusted-users = [ "root" "geir" ];
environment.localBinInPath = true;
users.users.geir = {
isNormalUser = true;
description = "Geir Okkenhaug Jerstad";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.zsh;
packages = with pkgs; [
discord teamviewer evince
# Browsers
firefox qutebrowser chromium
# Monitoring tools
htop glances bottom fwupd
# shells & terminals
terminator foot kitty
starship
nushell
fzf
# Multiplexers
screen
tmux
zellij
# Editors & command line text utils
mc
neovim
poppler_utils
emacs
emacsPackages.vterm
libvterm libtool
magic-wormhole
protonvpn-cli
ytfzf
nix-direnv
#
mpv
# DevSecOps
virt-manager
# Audio tools
ncpamixer
# blog
haunt
];
};
environment.systemPackages = with pkgs; [
git hut unzip fastfetch
wget curl
neofetch inxi mlocate
tailscale bluez-tools
# Languages
zig
python3 python3Packages.pip
guile
go gotools golint
rustup
# language servers
zls
python3Packages.python-lsp-server
rnix-lsp
gopls
luajitPackages.lua-lsp
nodePackages.bash-language-server
vimPlugins.cmp-nvim-lsp
ccls
rnix-lsp
gdb
# building software
glibc
stdenv
clang
qemu
cmake
gcc
bintools
gnutar
sccache
ncurses
];
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 22 ];
networking.firewall.allowedUDPPorts = [ 22 ];
networking.firewall.enable = true;
system.stateVersion = "22.11";
}