alqueva/computers/waddledee/default.nix
Artur Manuel ec4c5171d7 meta: archiving repository
because of an event that is going to happen really soon,
i do not have a choice other than to temporarily abandon
these dotfiles.

why? my brother recently left during christmas, and as
every loving brother would do, installed linux on it :-).
personally i felt like developing on linux was better for
me overall but i feel like it would be _even better_ if
my brother wasn't gonna be pissed because i ransacked his
system for my own. so i will be installing windows and
everything he needs so i dont end up on his bad side (;;-_-)

this dotfiles repo will lay abandoned until i feel as if
i can use nixos again, but that will probably be in a small
scale form such as with nixos-wsl. i feel like my productivity
will boost from the windows buff as well :-).

viva nixos!
2024-11-05 16:29:52 +00:00

93 lines
1.7 KiB
Nix

{pkgs, ...}: {
imports = [
./hardware-configuration.nix
./disks.nix
./river.nix
./theme.nix
];
config = {
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
services = {
xserver.xkb = {
layout = "us";
options = "eurosign:e,ctrl:nocaps";
};
udev.packages = [
pkgs.android-udev-rules
];
libinput.enable = true;
openssh.enable = true;
};
hardware.graphics = {
enable = true;
enable32Bit = false;
};
environment.systemPackages = builtins.attrValues {
inherit
(pkgs)
nil
statix
deadnix
alejandra
wget
vesktop
nicotine-plus
mpv
imv
lunarvim
amberol
;
};
alqueva = {
mpd = {
enable = true;
ncmpcpp = true;
};
fonts = {
names = {
sansSerif = ["Fira Sans"];
monospace = ["Fira Mono"];
serif = ["Poly"];
};
packages = [
(pkgs.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];})
pkgs.font-awesome
pkgs.fira
pkgs.poly
];
enable = true;
};
qutebrowser.enable = true;
pipewire.enable = true;
openssh.enable = true;
libvirt.enable = true;
direnv.enable = true;
emacs.enable = true;
git.enable = true;
};
networking.networkmanager.enable = true;
time.timeZone = "Europe/London";
i18n.defaultLocale = "en_GB.UTF-8";
system.stateVersion = "24.11";
};
}