2021-02-02 20:10:25 +01:00
|
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib }:
|
|
|
|
{ config, lib, ... }:
|
2020-12-26 23:36:50 +01:00
|
|
|
{
|
|
|
|
home.packages = (with nixpkgs-unstable; [
|
|
|
|
i3status-rust
|
|
|
|
]) ++ (with nixpkgs; [
|
|
|
|
font-awesome
|
|
|
|
dejavu_fonts
|
|
|
|
feh
|
|
|
|
]) ++ (with custom; [
|
|
|
|
screenshot
|
|
|
|
]);
|
|
|
|
|
|
|
|
home.file = {
|
2021-02-02 20:10:25 +01:00
|
|
|
".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;
|
2020-12-26 23:36:50 +01:00
|
|
|
};
|
|
|
|
}
|