82 lines
2.4 KiB
Nix
82 lines
2.4 KiB
Nix
{
|
|
pkgs,
|
|
username,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./desktop.nix
|
|
./work.nix
|
|
];
|
|
home-manager.users.${username} =
|
|
{ config, ... }:
|
|
{
|
|
home.stateVersion = "23.05";
|
|
wayland.windowManager.hyprland.settings.monitor = [
|
|
"desc:Dell Inc. DELL P3223QE CCG8YN3,preferred,auto,1.5"
|
|
];
|
|
systemd.user.services =
|
|
let
|
|
inherit (config.xdg) configHome;
|
|
in
|
|
{
|
|
mount-documents =
|
|
let
|
|
target = "${config.home.homeDirectory}/OneDrive";
|
|
in
|
|
{
|
|
Unit = {
|
|
Description = "Mount OneDrive to local directory";
|
|
After = [ "network-online.target" ];
|
|
};
|
|
Service = {
|
|
Type = "notify";
|
|
ExecStartPre = "/usr/bin/env mkdir -p ${target}";
|
|
ExecStart = "${pkgs.rclone}/bin/rclone --config=${configHome}/rclone/rclone.conf --vfs-cache-mode writes --ignore-checksum mount \"OneDrive:\" ${target}";
|
|
ExecStop = "/bin/fusermount -u ${target}";
|
|
};
|
|
Install.WantedBy = [ "default.target" ];
|
|
};
|
|
mount-downloads =
|
|
let
|
|
target = config.xdg.userDirs.download;
|
|
in
|
|
{
|
|
Unit = {
|
|
Description = "Mount Downloads directory to OneDrive";
|
|
After = [ "network-online.target" ];
|
|
};
|
|
Service = {
|
|
Type = "notify";
|
|
ExecStartPre = "/usr/bin/env mkdir -p ${target}";
|
|
ExecStart = "${pkgs.rclone}/bin/rclone --config=${configHome}/rclone/rclone.conf --vfs-cache-mode writes --ignore-checksum mount \"OneDrive:Downloads\" ${target}";
|
|
ExecStop = "/bin/fusermount -u ${target}";
|
|
};
|
|
Install.WantedBy = [ "default.target" ];
|
|
};
|
|
};
|
|
};
|
|
boot = {
|
|
loader.efi.efiSysMountPoint = "/boot/efi";
|
|
initrd = {
|
|
secrets = {
|
|
"/crypto_keyfile.bin" = null;
|
|
};
|
|
luks.devices."luks-47d34268-5100-4eba-b34d-220f4239c1cb" = {
|
|
device = "/dev/disk/by-uuid/47d34268-5100-4eba-b34d-220f4239c1cb";
|
|
keyFile = "/crypto_keyfile.bin";
|
|
};
|
|
};
|
|
};
|
|
system.stateVersion = "23.05";
|
|
environment = {
|
|
etc."ppp/options".text = ''
|
|
ipcp-accept-remote
|
|
'';
|
|
systemPackages = with pkgs; [
|
|
openfortivpn
|
|
samba
|
|
];
|
|
};
|
|
}
|