mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
feat: depend less on nixpkgs-unstable
This commit is contained in:
@@ -35,9 +35,8 @@ let
|
||||
in {
|
||||
environment.variables.TERMINAL = "alacritty";
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
unstable.alacritty
|
||||
unstable.alacritty.terminfo
|
||||
environment.systemPackages = [
|
||||
pkgs.unstable.alacritty
|
||||
];
|
||||
|
||||
home-manager.users.me.xdg.configFile = {
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
source-sans-pro
|
||||
ubuntu_font_family
|
||||
gfs-fonts
|
||||
unstable.jetbrains-mono
|
||||
jetbrains-mono
|
||||
twemoji-color-font
|
||||
joypixels
|
||||
];
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
server = {
|
||||
enable = false;
|
||||
user = config.users.users.me;
|
||||
package = pkgs.unstable.hledger-web;
|
||||
package = pkgs.hledger-web;
|
||||
};
|
||||
package = pkgs.unstable.hledger;
|
||||
package = pkgs.hledger;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -29,10 +29,10 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
new-workspace = pkgs.unstable.writers.writeDash "new-workspace" ''
|
||||
new-workspace = pkgs.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))
|
||||
'';
|
||||
move-to-new-workspace = pkgs.unstable.writers.writeDash "new-workspace" ''
|
||||
move-to-new-workspace = pkgs.writers.writeDash "new-workspace" ''
|
||||
i3-msg move container to workspace $(($(i3-msg -t get_workspaces | tr , '\n' | grep '"num":' | cut -d : -f 2 | sort -rn | head -1) + 1))
|
||||
'';
|
||||
|
||||
@@ -146,7 +146,7 @@ in with config.niveum; {
|
||||
text = colours.foreground;
|
||||
};
|
||||
};
|
||||
statusCommand = "${pkgs.unstable.i3status-rust}/bin/i3status-rs ${
|
||||
statusCommand = "${pkgs.i3status-rust}/bin/i3status-rs ${
|
||||
pkgs.writeTOML (import <niveum/dot/i3status-rust.nix> {
|
||||
wifi-interface = networkInterfaces.wireless;
|
||||
batteryBlock = batteryBlocks.default;
|
||||
|
||||
@@ -100,6 +100,7 @@
|
||||
pdfgrep # search in pdf
|
||||
pdftk # pdf toolkit
|
||||
evince # for viewing pdf annotations
|
||||
xournal # for annotating pdfs
|
||||
youtubeDL
|
||||
bc # calculator
|
||||
scripts.default-gateway
|
||||
|
||||
@@ -71,7 +71,7 @@ in {
|
||||
haskellPackages.pandoc-citeproc
|
||||
# nur.repos.kmein.text2pdf
|
||||
libreoffice
|
||||
pandoc
|
||||
unstable.pandoc
|
||||
# proselint
|
||||
asciidoctor
|
||||
wordnet
|
||||
|
||||
Reference in New Issue
Block a user