about summary refs log tree commit diff
path: root/nix
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2022-08-30 15:47:32 +0900
committerNguyễn Gia Phong <mcsinyx@disroot.org>2022-08-30 15:47:32 +0900
commit95c2061fcccd276c6362ae69eac4dea01cbd4e54 (patch)
treeadeb95fd8eee15447d8dcef19a57f0d048d80d28 /nix
parent1aaf8850986e1199b1830ee2b754c329dc179f04 (diff)
downloaddotfiles-95c2061fcccd276c6362ae69eac4dea01cbd4e54.tar.gz
Install stuff for work
Diffstat (limited to 'nix')
-rw-r--r--nix/awesome.nix4
-rw-r--r--nix/configuration.nix4
-rw-r--r--nix/devel.nix13
3 files changed, 12 insertions, 9 deletions
diff --git a/nix/awesome.nix b/nix/awesome.nix
index 1865b80..cac1ce8 100644
--- a/nix/awesome.nix
+++ b/nix/awesome.nix
@@ -36,11 +36,11 @@
   };
 
   environment.systemPackages = with pkgs; [
-    easyeffects gnome.adwaita-icon-theme networkmanagerapplet qt5ct
+    barrier gnome.adwaita-icon-theme networkmanagerapplet qt5ct
     clipbuzz keynav playerctl pulsemixer xclip xdotool xorg.xkill
     aerc amfora calcurse dante khard ncdu ranger ueberzug vim_configurable
     arandr audacious gnucash liferea scrot rxvt-unicode zathura
-    firefox libreoffice mepo-x11 nheko obs-studio tor-browser-bundle-bin
+    firefox libreoffice mepo-x11 nheko tor-browser-bundle-bin
     nextcloud-client transmission-gtk
   ];
 
diff --git a/nix/configuration.nix b/nix/configuration.nix
index 2dff2e4..b346b63 100644
--- a/nix/configuration.nix
+++ b/nix/configuration.nix
@@ -74,7 +74,7 @@
     compsize cryptsetup htop-vim inotify-tools killall rsync unzip zip
     oathToolkit isync stow tor w3m wget yt-dlp
     imv mpv pavucontrol sent yacreader
-    ffmpeg gimp imagemagick inkscape mkvtoolnix pdftk simplescreenrecorder sox
+    ffmpeg gimp imagemagick mkvtoolnix mediainfo pdftk simplescreenrecorder sox
   ];
 
   programs.iotop.enable = true;
@@ -107,5 +107,5 @@
   # this value at the release version of the first install of this system.
   # Before changing this value read the documentation for this option
   # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
-  system.stateVersion = "21.05"; # Did you read the comment?
+  system.stateVersion = "22.05"; # Did you read the comment?
 }
diff --git a/nix/devel.nix b/nix/devel.nix
index 76e60c5..dacec24 100644
--- a/nix/devel.nix
+++ b/nix/devel.nix
@@ -3,10 +3,10 @@
 {
   environment.systemPackages = with pkgs; [
     exa fd gitAndTools.gitFull glow jq minicom man-pages ripgrep rlwrap
-    clojure gcc go lua python3 qbe rakudo zig
-    bintools gdb gnumake luaPackages.luacheck mypy pkg-config
-    plantuml texlive.combined.scheme-full
-  ] ++ (with python3Packages; [ flit pip tox ]);
+    gcc go guile_3_0 lua python3 rakudo zig
+    bintools gdb gnumake pkg-config
+    texlive.combined.scheme-full
+  ] ++ (with python3Packages; [ flit ]);
 
   programs.mtr.enable = true;
   programs.gnupg.agent = {
@@ -30,5 +30,8 @@
     };
   };
 
-  systemd.services.ipfs.preStart = lib.mkForce "";
+  virtualisation.podman = {
+    dockerCompat = true;
+    enable = true;
+  };
 }