mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 18:46:13 +01:00
20 lines
516 B
Nix
20 lines
516 B
Nix
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, ... }:
|
|
hostname:
|
|
{ config, lib, pkgs, ... }:
|
|
{
|
|
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 pkgs; screenshot = custom.screenshot; }).config;
|
|
".config/i3/status.toml".text = (import ./status.toml.nix { inherit hostname pkgs; }).config;
|
|
};
|
|
}
|