2022-06-09 19:16:28 +00:00
|
|
|
{ config, pkgs, lib, inputs, ... }:
|
2020-11-26 04:17:41 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2020-12-04 23:35:51 +00:00
|
|
|
./boot-config.nix
|
|
|
|
./hardware-configuration.nix
|
2021-08-27 19:03:50 +00:00
|
|
|
../../sets/laptop.nix
|
2021-01-10 06:27:22 +00:00
|
|
|
../../sets/workstation.nix
|
2023-11-01 04:18:19 +00:00
|
|
|
../../sets/sshd.nix
|
|
|
|
inputs.nixos-hardware.nixosModules.pine64-pinebook-pro
|
2020-12-04 23:35:51 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "mistmane";
|
2021-08-26 18:06:46 +00:00
|
|
|
|
2021-08-27 19:03:50 +00:00
|
|
|
home-manager.users.artemis = {
|
|
|
|
wayland.windowManager.sway.config = {
|
|
|
|
input."9610:30:HAILUCK_CO.,LTD_USB_KEYBOARD_Touchpad" = {
|
|
|
|
middle_emulation = "enabled";
|
|
|
|
click_method = "clickfinger";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
xdg.configFile."rustybar/config.toml".text = ''
|
|
|
|
[[tile]]
|
|
|
|
type = "load"
|
|
|
|
[[tile]]
|
|
|
|
type = "memory"
|
|
|
|
[[tile]]
|
|
|
|
type = "hostname"
|
|
|
|
[[tile]]
|
|
|
|
type = "battery"
|
|
|
|
battery = "cw2015-battery"
|
|
|
|
[[tile]]
|
|
|
|
type = "time"
|
|
|
|
format = "%Y-%m-%dT%H:%M:%S"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
services.logind = {
|
|
|
|
lidSwitch = lib.mkForce "lock";
|
|
|
|
extraConfig = lib.mkForce "HandlePowerKey=lock";
|
|
|
|
};
|
|
|
|
|
|
|
|
system.stateVersion = "21.11";
|
2020-11-26 04:17:41 +00:00
|
|
|
}
|