nixos-configuration/hive/framework/configuration.nix

88 lines
2.1 KiB
Nix
Raw Normal View History

2023-12-07 23:02:30 +00:00
{ pkgs, ... }:
2023-11-17 11:58:33 +00:00
{
boot.loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
environment = {
# Excludes some KDE plasma applications from the default
# install. We choose to use KDE since, with wayland support,
# is is capable of fractional scaling.
plasma5.excludePackages = with pkgs.libsForQt5; [
elisa
gwenview
khelpcenter
konsole
okular
oxygen
plasma-browser-integration
print-manager
];
systemPackages = with pkgs; [
gcc
git
((vim_configurable.override {}).customize {
name = "vim";
vimrcConfig.customRC = ''
set nocompatible
syntax on
set colorcolumn=80,100
set expandtab " Spaces instead of tabs.
set list " Show hidden characters.
2023-11-18 22:20:09 +00:00
set listchars=tab:>\ ,trail:-,nbsp:+
set shiftwidth=2 " # of spaces to use for each (auto)indent.
set tabstop=2 " # of spaces a <Tab> in the file counts for.
'';
})
2023-11-17 11:58:33 +00:00
];
variables = {
EDITOR = "vim";
2023-11-17 11:58:33 +00:00
};
};
fonts.packages = with pkgs; [ iosevka ];
2023-11-18 20:01:32 +00:00
2023-11-17 11:58:33 +00:00
hardware.bluetooth.enable = true;
2023-12-08 19:07:54 +00:00
networking.hostName = "framework";
2023-11-17 11:58:33 +00:00
networking.networkmanager.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Recommended when using pipewire.
# https://nixos.wiki/wiki/PipeWire
security.rtkit.enable = true;
services = {
mullvad-vpn.enable = true;
openssh.enable = true;
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
xserver = {
enable = true;
desktopManager.plasma5.enable = true;
desktopManager.xterm.enable = false;
displayManager.defaultSession = "plasmawayland";
xkbOptions = "ctrl:swapcaps";
};
};
2023-12-31 19:25:46 +00:00
time.timeZone = "America/Denver";
2023-11-17 11:58:33 +00:00
2023-12-11 14:36:33 +00:00
virtualisation = {
libvirtd.enable = true;
docker.rootless = {
enable = true;
# Sets the `DOCKER_HOST` variable to the rootless Docker instance for normal
# users by default.
setSocketVariable = true;
};
2023-11-18 22:20:09 +00:00
};
2023-11-17 11:58:33 +00:00
}