update and fix impure
This commit is contained in:
@@ -6,7 +6,11 @@ let
|
||||
in {
|
||||
home.sessionVariables = { EDITOR = "nvim"; };
|
||||
|
||||
home.packages = with pkgs; [ nerdfonts texliveFull clang-tools ];
|
||||
home.packages = with pkgs; [
|
||||
nerd-fonts.jetbrains-mono
|
||||
texliveFull
|
||||
clang-tools
|
||||
];
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
@@ -88,7 +92,7 @@ in {
|
||||
neovim-remote
|
||||
# Nix
|
||||
nixd
|
||||
nixfmt
|
||||
nixfmt-classic
|
||||
# Rust
|
||||
rust-analyzer
|
||||
# Bash
|
||||
|
||||
@@ -29,7 +29,7 @@ return {
|
||||
markdown = { "prettierd" },
|
||||
json = { "prettierd" },
|
||||
yaml = { "prettierd" },
|
||||
nix = { "nixfmt" },
|
||||
nix = { "nixfmt-classic" },
|
||||
tex = { "latexindent" },
|
||||
c = { "clang_format" },
|
||||
cpp = { "clang_format" },
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ oranchelo-icon-theme nerdfonts xclip ];
|
||||
home.packages = with pkgs; [
|
||||
#oranchelo-icon-theme
|
||||
nerd-fonts.jetbrains-mono
|
||||
xclip
|
||||
];
|
||||
|
||||
xsession.initExtra = "setxkbmap de"; # rofi pass needs this to be set
|
||||
|
||||
@@ -11,7 +15,7 @@
|
||||
theme = ./theme.rafi;
|
||||
extraConfig = {
|
||||
mode = "run,drun,window,ssh,network";
|
||||
icon-theme = "Oranchelo";
|
||||
#icon-theme = "Oranchelo";
|
||||
show-icons = true;
|
||||
drun-display-format = "{icon} {name}";
|
||||
location = 0;
|
||||
|
||||
@@ -3,7 +3,7 @@ with pkgs;
|
||||
haskellPackages.mkDerivation {
|
||||
pname = "xmobar";
|
||||
version = "0.1.0.0";
|
||||
src = /etc/nixos/home/programs/xmonad/src/xmobar/.;
|
||||
src = ./.;
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
executableHaskellDepends = with haskellPackages; [ base xmobar ];
|
||||
|
||||
Reference in New Issue
Block a user