M nixos/default.nix => nixos/default.nix +33 -33
@@ 14,21 14,21 @@
{ lib, inputs, ...}:
{
- laptop-iapetus = lib.nixosSystem { # Laptop profile
- # Ideapad S540
- specialArgs = {
- inherit inputs;
- };
- modules = [
- inputs.nixos-hardware.nixosModules.common-cpu-intel
- inputs.nixos-hardware.nixosModules.common-gpu-intel
- inputs.nixos-hardware.nixosModules.common-pc-laptop
- inputs.nixos-hardware.nixosModules.common-pc-laptop-acpi_call
- inputs.nixos-hardware.nixosModules.common-pc-laptop-ssd
- ./hosts/laptop-iapetus
- ./hosts/configuration.nix
- ];
- };
+ # laptop-iapetus = lib.nixosSystem { # Laptop profile
+ # # Ideapad S540
+ # specialArgs = {
+ # inherit inputs;
+ # };
+ # modules = [
+ # inputs.nixos-hardware.nixosModules.common-cpu-intel
+ # inputs.nixos-hardware.nixosModules.common-gpu-intel
+ # inputs.nixos-hardware.nixosModules.common-pc-laptop
+ # inputs.nixos-hardware.nixosModules.common-pc-laptop-acpi_call
+ # inputs.nixos-hardware.nixosModules.common-pc-laptop-ssd
+ # ./hosts/laptop-iapetus
+ # ./hosts/configuration.nix
+ # ];
+ # };
laptop-phobos = lib.nixosSystem { # Laptop profile
# Thinkpad T14s
@@ 43,23 43,23 @@
];
};
- desktop-clotho = lib.nixosSystem { # Desktop profile
- specialArgs = {
- inherit inputs;
- };
- modules = [
- ./hosts/desktop-clotho
- ./hosts/configuration.nix
- ];
- };
+ # desktop-clotho = lib.nixosSystem { # Desktop profile
+ # specialArgs = {
+ # inherit inputs;
+ # };
+ # modules = [
+ # ./hosts/desktop-clotho
+ # ./hosts/configuration.nix
+ # ];
+ # };
- vm = lib.nixosSystem { # VM profile
- specialArgs = {
- inherit inputs;
- };
- modules = [
- ./hosts/vm
- ./hosts/configuration.nix
- ];
- };
+ # vm = lib.nixosSystem { # VM profile
+ # specialArgs = {
+ # inherit inputs;
+ # };
+ # modules = [
+ # ./hosts/vm
+ # ./hosts/configuration.nix
+ # ];
+ # };
}
M nixos/modules/profiles/desktop/qtile.nix => nixos/modules/profiles/desktop/qtile.nix +1 -1
@@ 9,7 9,7 @@ let
ppkgs.pydbus
];
finalPackage = pkgs.qtile-unwrapped.overridePythonAttrs(oldAttrs: {
- propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ pythonEnvPackages pkgs.python3Packages;
+ propagatedBuildInputs = (oldAttrs.propagatedBuildInputs or []) ++ pythonEnvPackages pkgs.python3Packages;
passthru.providedSessions = [ "qtile" "qtile-wayland" ];
postInstall = (oldAttrs.postInstall or "") + ''
mkdir -p $out/share/xsessions $out/share/wayland-sessions