mirror of
https://github.com/kmein/niveum
synced 2026-03-17 10:41:06 +01:00
kropsify
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{ config, pkgs }:
|
||||
with import ../theme.nix;
|
||||
with import <niveum/theme.nix>;
|
||||
{
|
||||
enable = true;
|
||||
iconTheme = config.constants.theme.icon;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
haskellPackages:
|
||||
with haskellPackages; [
|
||||
(callPackage ../packages/blessings.nix {})
|
||||
(callPackage <niveum/packages/blessings.nix> {})
|
||||
HTTP
|
||||
HUnit
|
||||
MissingH
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ pkgs, config, lib }:
|
||||
let
|
||||
unstable = import <nixos-unstable> {};
|
||||
i3blocks_conf = import ./i3blocks.nix { inherit pkgs; };
|
||||
i3blocks_conf = import <niveum/dot/i3blocks.nix> { inherit pkgs; };
|
||||
new-workspace = unstable.writers.writeDash "new-workspace" ''
|
||||
i3-msg workspace $(($(i3-msg -t get_workspaces | tr , '\n' | grep '"num":' | cut -d : -f 2 | sort -rn | head -1) + 1))
|
||||
'';
|
||||
@@ -12,7 +12,7 @@ let
|
||||
scardanelli = "wlp2s0";
|
||||
homeros = "wlp3s0";
|
||||
}.${config.networking.hostName};
|
||||
in with import ../theme.nix;
|
||||
in with import <niveum/theme.nix>;
|
||||
rec {
|
||||
fonts = [ "${uiFont.name} ${toString uiFont.size}" ];
|
||||
modifier = "Mod4";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ config }:
|
||||
with import ../theme.nix;
|
||||
with import <niveum/theme.nix>;
|
||||
{
|
||||
enable = true;
|
||||
separator = "solid";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ config, pkgs }:
|
||||
with import ../theme.nix;
|
||||
with import <niveum/theme.nix>;
|
||||
{
|
||||
enable = true;
|
||||
package = pkgs.rxvt_unicode-with-plugins;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ lib }:
|
||||
let theme = import ../theme.nix;
|
||||
let theme = import <niveum/theme.nix>;
|
||||
in with lib; lists.foldr
|
||||
(i: cs: cs // { "*color${toString i}" = builtins.elemAt theme.colorPalette i; })
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user