2020-02-21 01:23:10 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
{
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
wget
|
|
|
|
|
inetutils
|
|
|
|
|
|
|
|
|
|
man
|
|
|
|
|
|
2020-03-02 04:59:42 +01:00
|
|
|
dos2unix
|
|
|
|
|
|
2020-02-21 01:23:10 +01:00
|
|
|
vim
|
|
|
|
|
git
|
2020-03-02 04:59:42 +01:00
|
|
|
zip
|
2020-02-24 19:42:25 +01:00
|
|
|
unzip
|
2020-02-21 01:23:10 +01:00
|
|
|
|
|
|
|
|
htop
|
|
|
|
|
ncdu
|
2020-03-02 04:59:42 +01:00
|
|
|
nload
|
2020-02-21 01:23:10 +01:00
|
|
|
pciutils
|
|
|
|
|
];
|
|
|
|
|
fonts = {
|
|
|
|
|
fonts = with pkgs; [
|
|
|
|
|
meslo-lg
|
|
|
|
|
nerdfonts
|
|
|
|
|
];
|
|
|
|
|
fontconfig.defaultFonts = {
|
|
|
|
|
monospace = [ "MesloLGMDZ Nerd Font Mono" ];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sound.enable = true;
|
|
|
|
|
hardware.pulseaudio.enable = true;
|
|
|
|
|
hardware.pulseaudio.support32Bit = true;
|
|
|
|
|
|
|
|
|
|
users.users.froidmpa = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "wheel" ];
|
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
|
};
|
|
|
|
|
|
2020-02-25 03:35:19 +01:00
|
|
|
programs.ssh.startAgent = true;
|
2020-02-21 01:23:10 +01:00
|
|
|
services.xserver = {
|
|
|
|
|
enable = true;
|
|
|
|
|
layout = "fr";
|
|
|
|
|
desktopManager.xterm.enable = false;
|
|
|
|
|
windowManager.xmonad.enable = true;
|
2020-02-22 04:29:00 +01:00
|
|
|
displayManager.lightdm = {
|
|
|
|
|
enable = true;
|
|
|
|
|
background = "/etc/nixos/configs/files/wallpaper.png";
|
|
|
|
|
};
|
2020-02-21 01:23:10 +01:00
|
|
|
};
|
2020-03-09 23:20:16 +01:00
|
|
|
|
|
|
|
|
# Required for custom GTK themes
|
|
|
|
|
services.dbus.packages = with pkgs; [ gnome3.dconf ];
|
2020-02-24 19:42:25 +01:00
|
|
|
}
|