mirror of
https://github.com/kmein/niveum
synced 2026-03-21 20:31:07 +01:00
Compare commits
3 Commits
89c852c4ea
...
bef795e45c
| Author | SHA1 | Date | |
|---|---|---|---|
| bef795e45c | |||
| 9b7c300466 | |||
| f4fca0a971 |
@@ -47,11 +47,12 @@ in {
|
||||
enable = true;
|
||||
startInBackground = true;
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.services.nextcloud-client = {
|
||||
wants = ["gnome-keyring.service"];
|
||||
after = ["gnome-keyring.service"];
|
||||
systemd.user.services.nextcloud-client = {
|
||||
Unit = {
|
||||
Wants = ["gnome-keyring.service"];
|
||||
After = ["gnome-keyring.service"];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = [
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
{pkgs, ...}: {
|
||||
{pkgs, ...}: let
|
||||
nixpkgs-unstable = import <nixpkgs-unstable> {};
|
||||
in {
|
||||
nixpkgs.config.joypixels.acceptLicense = true;
|
||||
fonts = {
|
||||
enableDefaultFonts = true;
|
||||
@@ -7,14 +9,17 @@
|
||||
alegreya
|
||||
alegreya-sans
|
||||
amiri
|
||||
nixpkgs-unstable.annapurna-sil
|
||||
cantarell-fonts
|
||||
charis-sil
|
||||
corefonts
|
||||
crimson
|
||||
eb-garamond
|
||||
etBook
|
||||
nixpkgs-unstable.ezra-sil
|
||||
fira
|
||||
font-awesome-ttf
|
||||
nixpkgs-unstable.galatia-sil
|
||||
gentium
|
||||
gfs-fonts
|
||||
gyre-fonts
|
||||
@@ -26,7 +31,6 @@
|
||||
libre-bodoni
|
||||
lmodern
|
||||
merriweather
|
||||
noto-fonts
|
||||
ocr-a
|
||||
roboto
|
||||
roboto-mono
|
||||
|
||||
@@ -307,16 +307,11 @@ in
|
||||
packages = [pkgs.xdo];
|
||||
};
|
||||
|
||||
ipa =
|
||||
pkgs.writers.writeHaskellBin "ipa" {
|
||||
libraries = with pkgs; [haskellPackages.text haskellPackages.ipa];
|
||||
} ''
|
||||
import Data.Maybe (fromJust)
|
||||
import Language.IPA
|
||||
import qualified Data.Text as T
|
||||
import qualified Data.Text.IO as T
|
||||
main = T.interact (T.unwords . map (unIPA . fromJust . (xSampaToIpa =<<) . mkXSampa) . T.words)
|
||||
'';
|
||||
ipa = wrapScript {
|
||||
script = ./ipa.py;
|
||||
name = "ipa";
|
||||
packages = [pkgs.python3];
|
||||
};
|
||||
|
||||
default-gateway = pkgs.writers.writeDashBin "default-gateway" ''
|
||||
${pkgs.iproute}/bin/ip -json route | ${pkgs.jq}/bin/jq --raw-output '.[0].gateway'
|
||||
|
||||
Reference in New Issue
Block a user