This commit is contained in:
albert 2023-08-24 10:01:13 +09:00
parent 8340f558b0
commit e13d0e9fc0
3 changed files with 5 additions and 5 deletions

View file

@ -19,8 +19,8 @@
libx = import ./lib { inherit inputs outputs stateVersion hmStateVersion; };
in {
nixosConfigurations = {
nixos-laptop = libx.mkHost { hostname = "nixos-laptop"; username = "albert"; desktop = "hyprland"; graphics="intel" };
nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; username = "albert"; desktop = "gnome"; graphics="nvidia" };
nixos-laptop = libx.mkHost { hostname = "nixos-laptop"; username = "albert"; desktop = "hyprland"; graphics = "intel"; };
nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; username = "albert"; desktop = "gnome"; graphics = "nvidia"; };
};
homeConfigurations = {
"albert@nixos-laptop" = libx.mkHome { hostname = "nixos-laptop"; username = "albert"; desktop = "hyprland"; };

View file

@ -1,4 +1,4 @@
{ lib, config, pkgs, hostname, stateVersion, username, desktop, ... }: {
{ lib, config, pkgs, hostname, stateVersion, username, desktop, graphics, ... }: {
imports = [
# Services
./common/services/openssh.nix

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, modulesPath, desktop, username, ... }: {
{ config, lib, pkgs, modulesPath, desktop, username, graphics, ... }: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
../../common/services/powertop.nix