Compare commits

...

2 Commits

4 changed files with 13 additions and 34 deletions

View File

@ -11,12 +11,7 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
# Enable networking
networking.networkmanager.enable = true;
networking.wireless.iwd = {
enable = true;
settings.General.EnableNetworkConfiguration = true;
};
# Set your time zone.
time.timeZone = "America/Anchorage";
@ -158,9 +153,6 @@
vim
emacs29-pgtk
nfs-utils
# v4l-utils
# android-tools
# adb-sync
];
services.flatpak.enable = true;

View File

@ -63,6 +63,7 @@
system = "aarch64-linux";
specialArgs = { inherit inputs; };
modules = [
./modules/networking.nix
./configuration.nix {
services.xserver.videoDrivers = [ "modesetting" ];
boot.binfmt.emulatedSystems = ["x86_64-linux"];
@ -92,6 +93,7 @@
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./modules/networking.nix
./configuration.nix {
networking.hostName = "breakdown";
boot.loader.efi.canTouchEfiVariables = true;
@ -114,6 +116,7 @@
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./modules/networking.nix
./configuration.nix {
services.xserver.videoDrivers = [ "modesetting" "displaylink" ];
networking.hostName = "starscream";
@ -136,6 +139,7 @@
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./modules/networking.nix
./configuration.nix {
services.xserver.videoDrivers = [ "modesetting" "displaylink" ];
boot.loader.efi.canTouchEfiVariables = true;

View File

@ -22,18 +22,7 @@ with lib.hm.gvariant;
pkgs.eza
pkgs.python3
pkgs.unzip
# (pkgs.wrapOBS {
# plugins = with pkgs.obs-studio-plugins; [
# droidcam-obs
# ];
# })
# (pkgs.wrapOBS.override {
# obs-studio =
# (pkgs.obs-studio.override {
# plugins = [ pkgs.obs-studio-plugins.droidcam-obs ];
# })
# ;})
# pkgs.gnupg
# pkgs.python3
# (pkgs.python3.withPackages(
@ -114,11 +103,6 @@ with lib.hm.gvariant;
# source = inputs.emacs-config;
# recursive = true;
# };
# home.file.".config/obs-studio/droidcam-obs".source = pkgs.fetchzip {
# url = "https://github.com/dev47apps/droidcam-obs-plugin/releases/download/2.3.2/droidcam_obs_2.3.2_linux_flatpak.zip";
# sha256 = "6IXNUtCqMYKmHDDpVvi8DFG4N5WfB+lyu/Xj7Qg0L70";
# stripRoot = false;
# };
home.file.".face".source = builtins.fetchurl {
url = "https://marq42.xyz/rena.webp";
sha256 = "10x3qvfdp79fmbbi7ljnqx419xmwpiyyr4pfxhynh3xq7fd0laz2";
@ -198,15 +182,6 @@ with lib.hm.gvariant;
# pinentryFlavor = "gnome3";
# };
};
# programs.obs-studio = {
# enable = true;
# plugins = [ pkgs.obs-studio-plugins.droidcam-obs ];
# # package = (pkgs.wrapOBS {
# # plugins = with pkgs.obs-studio-plugins; [
# # droidcam-obs
# # ];
# # });
# };
services.gpg-agent = {
enable = true;

8
modules/networking.nix Normal file
View File

@ -0,0 +1,8 @@
# Enable networking
networking.networkmanager.enable = true;
networking.wireless.iwd = {
enable = true;
settings.General.EnableNetworkConfiguration = true;
};