dotfiles/nixos/common.nix

114 lines
2.8 KiB
Nix
Raw Normal View History

2019-07-18 22:17:36 +01:00
{ config, pkgs, ... }:
2019-03-26 10:12:24 +00:00
2019-03-26 12:32:59 +00:00
let
2019-04-19 20:36:53 +01:00
unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
etesync-dav = import ./packages/etesync-dav/default.nix;
2019-03-26 12:32:59 +00:00
in
2019-07-07 12:08:00 +01:00
{
imports =
[
./vscode.nix
./syncthing.nix
./gsconnect.nix
2019-07-18 22:17:36 +01:00
./common-hardware.nix
2019-07-07 12:08:00 +01:00
];
2019-07-21 11:40:02 +01:00
nix = {
binaryCaches = [
"https://cyplo.cachix.org"
];
binaryCachePublicKeys = [
"cyplo.cachix.org-1:6cmlYl6tQ1eidsjU2tw6uGN2hmzQ+P5uiQhuo6d1P5o="
];
};
2019-07-07 12:08:00 +01:00
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
unstable = import unstableTarball {
config = config.nixpkgs.config;
};
cyplo = import ./nixpkgs {
config = config.nixpkgs.config;
};
};
2019-04-19 20:36:53 +01:00
};
2019-03-26 12:32:59 +00:00
2019-07-07 12:08:00 +01:00
environment.systemPackages = with pkgs; [
2019-07-14 15:16:49 +01:00
wget git gnupg curl tmux python36Packages.glances vim htop atop firefox home-manager alacritty pciutils
2019-07-07 12:08:00 +01:00
];
2019-03-26 10:12:24 +00:00
2019-07-07 12:08:00 +01:00
i18n.defaultLocale = "en_GB.UTF-8";
2019-03-26 10:12:24 +00:00
2019-07-07 12:08:00 +01:00
users.users.cyryl = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "video" "scanner" "lp" "docker" "vboxusers"];
packages = with pkgs; [
unstable.pypi2nix etesync-dav unstable.hopper
];
shell = pkgs.zsh;
};
2019-07-14 19:24:40 +01:00
programs.light.enable = true;
2019-07-07 12:08:00 +01:00
virtualisation.docker = {
2019-07-06 11:34:11 +01:00
enable = true;
2019-07-07 12:08:00 +01:00
autoPrune.enable = true;
2019-07-06 11:34:11 +01:00
};
2019-03-26 12:32:59 +00:00
2019-07-07 12:08:00 +01:00
services = {
fwupd.enable = true;
tlp.enable = true;
2019-07-08 21:23:03 +01:00
fstrim.enable = true;
2019-07-21 10:13:49 +01:00
clipmenu.enable = true;
2019-07-07 12:08:00 +01:00
2019-07-18 22:17:36 +01:00
physlock = {
enable = true;
allowAnyUser = true;
};
2019-07-07 12:08:00 +01:00
printing = {
enable = true;
drivers = [ pkgs.epson-escpr pkgs.samsung-unified-linux-driver pkgs.splix ];
};
2019-07-18 22:17:36 +01:00
2019-07-07 12:08:00 +01:00
avahi = {
enable = true;
nssmdns = true;
};
restic.backups.home = {
passwordFile = "/etc/nixos/secrets/restic-password";
paths = [ "/home" ];
repository = "sftp:fetcher@brix:/mnt/data/backup-targets";
timerConfig = { OnCalendar = "hourly"; };
};
xserver = {
2019-07-06 08:55:20 +01:00
enable = true;
2019-07-07 12:08:00 +01:00
layout = "pl";
libinput = {
enable = true;
naturalScrolling = false;
clickMethod = "clickfinger";
};
2019-07-15 21:31:39 +01:00
displayManager.sddm = {
2019-07-07 12:08:00 +01:00
enable = true;
2019-07-15 21:31:39 +01:00
enableHidpi = true;
2019-07-07 12:08:00 +01:00
};
2019-07-06 08:55:20 +01:00
};
};
2019-07-07 12:08:00 +01:00
2019-07-08 21:47:51 +01:00
fonts.fonts = [ pkgs.powerline-fonts ];
2019-07-07 12:08:00 +01:00
nix.gc.automatic = true;
nix.autoOptimiseStore = true;
nix.optimise.automatic = true;
nix.daemonIONiceLevel = 7;
nix.daemonNiceLevel = 19;
2019-07-07 12:08:00 +01:00
system.autoUpgrade.enable = true;
system.stateVersion = "19.03";
}