nixos/system/Ronin.nix

84 lines
1.9 KiB
Nix
Raw Normal View History

{ pkgs, username, ... }:
2024-07-30 15:06:34 +01:00
{
imports = [ ./laptop.nix ];
home-manager.users.${username} = {
imports = [ ./home/work.nix ];
2024-09-11 15:19:43 +01:00
wayland.windowManager.sway.config = {
output = {
"eDP-1".scale = "1.25";
"Dell Inc. DELL P3223QE CCG8YN3".scale = "1.5";
};
2024-09-11 15:19:43 +01:00
workspaceOutputAssign = [
{
output = "eDP-1";
workspace = "1";
}
];
};
services.kanshi = {
enable = true;
settings =
let
laptopScreen = {
criteria = "eDP-1";
scale = 1.25;
# position = "2560,576";
2024-09-11 15:19:43 +01:00
};
monitor = {
criteria = "Dell Inc. DELL P3223QE CCG8YN3";
scale = 1.5;
};
in
[
{
profile = {
name = "default";
outputs = [
{
inherit (laptopScreen) criteria scale;
status = "enable";
position = "0,0";
}
];
2024-09-11 15:19:43 +01:00
};
}
{
profile = {
name = "docked";
outputs = [
{
inherit (laptopScreen) criteria scale;
status = "disable";
}
{
inherit (monitor) criteria scale;
status = "enable";
position = "0,0";
}
2024-09-11 15:19:43 +01:00
];
};
}
];
};
};
boot.initrd = {
2024-07-30 15:06:34 +01:00
secrets = {
"/crypto_keyfile.bin" = null;
};
luks.devices."luks-761eeb11-3091-4142-9232-4fb33165eccd" = {
device = "/dev/disk/by-uuid/761eeb11-3091-4142-9232-4fb33165eccd";
keyFile = "/crypto_keyfile.bin";
};
};
environment = {
etc."ppp/options".text = ''
ipcp-accept-remote
'';
2024-07-30 15:06:34 +01:00
systemPackages = with pkgs; [ openfortivpn ];
};
services = {
samba.enable = true;
hardware.bolt.enable = true;
};
}