2021-01-18 09:00:12 +01:00
|
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, ... }:
|
2020-12-26 23:36:50 +01:00
|
|
|
hostname:
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
home.packages = (with nixpkgs-unstable; [
|
|
|
|
i3status-rust
|
|
|
|
]) ++ (with nixpkgs; [
|
|
|
|
font-awesome
|
|
|
|
dejavu_fonts
|
|
|
|
feh
|
|
|
|
]) ++ (with custom; [
|
|
|
|
screenshot
|
|
|
|
]);
|
|
|
|
|
|
|
|
home.file = {
|
2021-01-10 19:51:28 +01:00
|
|
|
".config/i3/config".text = (import ./config.nix { inherit hostname pkgs; screenshot = custom.screenshot; }).config;
|
2020-12-26 23:36:50 +01:00
|
|
|
".config/i3/status.toml".text = (import ./status.toml.nix { inherit hostname pkgs; }).config;
|
|
|
|
};
|
|
|
|
}
|