Compare commits
No commits in common. "1c4df6655d9fe82bcbca575cfc42f354b7818fdd" and "371634cddaa6c8e18447c3352837b957b9a80ea7" have entirely different histories.
1c4df6655d
...
371634cdda
@ -11,7 +11,12 @@
|
||||
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";
|
||||
@ -153,6 +158,9 @@
|
||||
vim
|
||||
emacs29-pgtk
|
||||
nfs-utils
|
||||
# v4l-utils
|
||||
# android-tools
|
||||
# adb-sync
|
||||
];
|
||||
|
||||
services.flatpak.enable = true;
|
||||
|
@ -63,7 +63,6 @@
|
||||
system = "aarch64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./modules/networking.nix
|
||||
./configuration.nix {
|
||||
services.xserver.videoDrivers = [ "modesetting" ];
|
||||
boot.binfmt.emulatedSystems = ["x86_64-linux"];
|
||||
@ -93,7 +92,6 @@
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./modules/networking.nix
|
||||
./configuration.nix {
|
||||
networking.hostName = "breakdown";
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
@ -116,7 +114,6 @@
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./modules/networking.nix
|
||||
./configuration.nix {
|
||||
services.xserver.videoDrivers = [ "modesetting" "displaylink" ];
|
||||
networking.hostName = "starscream";
|
||||
@ -139,7 +136,6 @@
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./modules/networking.nix
|
||||
./configuration.nix {
|
||||
services.xserver.videoDrivers = [ "modesetting" "displaylink" ];
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
25
home.nix
25
home.nix
@ -22,7 +22,18 @@ 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(
|
||||
@ -103,6 +114,11 @@ 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";
|
||||
@ -182,6 +198,15 @@ 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;
|
||||
|
@ -1,8 +0,0 @@
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
networking.wireless.iwd = {
|
||||
enable = true;
|
||||
settings.General.EnableNetworkConfiguration = true;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user