about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2023-01-10 01:43:40 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2023-01-10 01:49:00 +0100
commit2aac875aced8ad23ead63c3417c8675ee769c431 (patch)
treeb4c63c00d5171cfdfeec9765d13ee591a383d955
parentDotfiles: Use elogind for libseat backend in wayland (diff)
downloadnixos-config-2aac875aced8ad23ead63c3417c8675ee769c431.tar.gz
nixos-config-2aac875aced8ad23ead63c3417c8675ee769c431.tar.bz2
nixos-config-2aac875aced8ad23ead63c3417c8675ee769c431.zip
Update
Diffstat (limited to '')
-rw-r--r--flake.lockbin5856 -> 5856 bytes
-rw-r--r--hosts/configuration.nix2
-rw-r--r--hosts/home.nix1
-rw-r--r--modules/virtualisation/default.nix1
-rw-r--r--overlays/base/default.nix10
5 files changed, 1 insertions, 13 deletions
diff --git a/flake.lock b/flake.lock
index 432b502..edcdf26 100644
--- a/flake.lock
+++ b/flake.lock
Binary files differdiff --git a/hosts/configuration.nix b/hosts/configuration.nix
index 80dc7f6..7294916 100644
--- a/hosts/configuration.nix
+++ b/hosts/configuration.nix
@@ -102,7 +102,7 @@
     lm_sensors
     pulseaudio # used for tools
     alsa-utils
-    python
+    python3
     killall
     wget
     gitFull
diff --git a/hosts/home.nix b/hosts/home.nix
index 08b5f83..f332c7a 100644
--- a/hosts/home.nix
+++ b/hosts/home.nix
@@ -175,7 +175,6 @@
       extensions = with pkgs.nur.repos.rycee.firefox-addons; [
         ublock-origin
         darkreader
-        https-everywhere
         h264ify
       ];
       profiles.default = {
diff --git a/modules/virtualisation/default.nix b/modules/virtualisation/default.nix
index 574f384..c816490 100644
--- a/modules/virtualisation/default.nix
+++ b/modules/virtualisation/default.nix
@@ -5,7 +5,6 @@
     podman = {
       enable = true;
       dockerCompat = true;
-      defaultNetwork.dnsname.enable = true;
     };
     libvirtd.enable = true;
     virtualbox.host.enable = true;
diff --git a/overlays/base/default.nix b/overlays/base/default.nix
index 833e7c0..2f021c7 100644
--- a/overlays/base/default.nix
+++ b/overlays/base/default.nix
@@ -64,16 +64,6 @@ final: prev:
     ];
   });
 
-  river = prev.river.overrideAttrs (old: {
-    src = prev.fetchFromGitHub {
-      owner = "riverwm";
-      repo = "river";
-      rev = "c0e64829f0517f6512438cbf80ae27bd21986b47";
-      sha256 = "sha256-vvK9DjgChf32fkzFRT+eJhRb00YYwZJYO48+HwRyIkM=";
-      fetchSubmodules = true;
-    };
-  });
-
   comma = prev.comma.overrideAttrs (old: rec {
     src = prev.fetchFromGitHub {
       owner = "baitinq";