feat: adapt home-manager-only config for changes

This commit is contained in:
Swarsel 2024-07-25 18:23:47 +02:00
parent 2db79465da
commit 00983d787e
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
36 changed files with 165 additions and 364 deletions

View file

@ -21,7 +21,7 @@
nixpkgs = {
overlays = outputs.overlays;
inherit (outputs) overlays;
config = {
allowUnfree = true;
};

View file

@ -1,17 +0,0 @@
{ config, pkgs, lib, ... }: with lib;
{
wayland.windowManager.sway = {
config = rec {
# update for actual inputs here,
# workspaceOutputAssign = [
# { output = "eDP-1"; workspace = "1:一"; }
# { output = "DP-4"; workspace = "2:二"; }
# ];
};
};
}

View file

@ -1,30 +0,0 @@
{ config, pkgs, ... }:
{
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
# kernelPackages = pkgs.linuxPackages_latest;
};
services.thinkfan = {
enable = false;
};
services.power-profiles-daemon.enable = true;
services.fwupd.enable = true;
services.nswitch-rcm = {
enable = true;
package = pkgs.fetchurl {
url = "https://github.com/Atmosphere-NX/Atmosphere/releases/download/1.3.2/fusee.bin";
hash = "sha256-5AXzNsny45SPLIrvWJA9/JlOCal5l6Y++Cm+RtlJppI=";
};
};
}