dotfiles/nix/home-manager/modules/i3/default.nix
Richard Brežák c98b2af55e Inputs in rlib modules and Nomad NixOS module
Signed-off-by: Richard Brežák <rbrezak@qualityunit.com>
2021-03-08 21:35:29 +01:00

19 lines
525 B
Nix

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib, inputs }:
{ config, lib, ... }:
{
home.packages = (with nixpkgs-unstable; [
i3status-rust
]) ++ (with nixpkgs; [
font-awesome
dejavu_fonts
feh
]) ++ (with custom; [
screenshot
]);
home.file = {
".config/i3/config".text = (import ./config.nix { inherit hostname nixpkgs; screenshot = custom.screenshot; }).config;
".config/i3/status.toml".text = (import ./status.toml.nix { inherit hostname nixpkgs; }).config;
};
}