Compare commits
No commits in common. "45af999d67beb0ca3ca41ccea186b4901783c001" and "4e7d130218403a7cb6411d0c9736f7cdb1e74338" have entirely different histories.
45af999d67
...
4e7d130218
11 changed files with 4 additions and 110 deletions
|
@ -3,6 +3,5 @@
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
#./disko.nix
|
#./disko.nix
|
||||||
./syncthing.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,5 @@
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./disko.nix
|
./disko.nix
|
||||||
./syncthing.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
services.syncthing = {
|
|
||||||
enable = true;
|
|
||||||
user = "willifan";
|
|
||||||
dataDir = "/mnt/data";
|
|
||||||
configDir = "/mnt/data/.config/syncthing";
|
|
||||||
overrideDevices = true;
|
|
||||||
overrideFolders = true;
|
|
||||||
settings = {
|
|
||||||
gui = {
|
|
||||||
user = "willifan";
|
|
||||||
password = "temppassword";
|
|
||||||
};
|
|
||||||
devices = {
|
|
||||||
Anton = { id = "WCDBADD-UPKCACI-X2YJOIO-5QC44PL-DBCR6TS-ADVQV33-HSMF32O-FOKMKAU"; };
|
|
||||||
};
|
|
||||||
folders = {
|
|
||||||
"Documents" = {
|
|
||||||
id = "jtl6g-qjmwo";
|
|
||||||
path = "/mnt/data/Documents";
|
|
||||||
devices = [ "Anton" ];
|
|
||||||
};
|
|
||||||
"Enpass" = {
|
|
||||||
id = "ciksm-xsw4m";
|
|
||||||
path = "/mnt/data/Enpass";
|
|
||||||
devices = [ "Anton" ];
|
|
||||||
};
|
|
||||||
"Pictures" = {
|
|
||||||
id = "po4qj-q9t0t";
|
|
||||||
path = "/mnt/data/Pictures";
|
|
||||||
devices = [ "Anton" ];
|
|
||||||
};
|
|
||||||
"Videos" = {
|
|
||||||
id = "4wqf5-xasng";
|
|
||||||
path = "/mnt/data/Videos";
|
|
||||||
devices = [ "Anton" ];
|
|
||||||
};
|
|
||||||
"Notes" = {
|
|
||||||
id = "oc61n-iewgj";
|
|
||||||
path = "/mnt/data/Notes";
|
|
||||||
devices = [ "Anton" ];
|
|
||||||
};
|
|
||||||
"Music" = {
|
|
||||||
id = "xxh8a-3y2tq";
|
|
||||||
path = "/mnt/data/Music";
|
|
||||||
devices = [ "Anton" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -6,6 +6,7 @@
|
||||||
./nfs-client.nix
|
./nfs-client.nix
|
||||||
./nix-ld.nix
|
./nix-ld.nix
|
||||||
./printers.nix
|
./printers.nix
|
||||||
|
./syncthing.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
{
|
{
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./emulation.nix
|
|
||||||
./jovian.nix
|
./jovian.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
melonDS
|
|
||||||
dolphin-emu
|
|
||||||
lime3ds
|
|
||||||
cemu
|
|
||||||
steam-rom-manager
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,32 +1,8 @@
|
||||||
{ pkgs, ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
jovian = {
|
jovian = {
|
||||||
decky-loader = {
|
decky-loader.enable = true;
|
||||||
enable = true;
|
|
||||||
user = "willifan";
|
|
||||||
extraPackages = with pkgs; [
|
|
||||||
# Generic packages
|
|
||||||
curl
|
|
||||||
unzip
|
|
||||||
util-linux
|
|
||||||
gnugrep
|
|
||||||
|
|
||||||
readline.out
|
|
||||||
procps
|
|
||||||
pciutils
|
|
||||||
libpulseaudio
|
|
||||||
|
|
||||||
# SimpleDeckyTDP
|
|
||||||
ryzenadj # actual TDP util
|
|
||||||
kmod # modprobe for acpi_call check
|
|
||||||
];
|
|
||||||
extraPythonPackages = pythonPackages: with pythonPackages; [
|
|
||||||
pyyaml # hhd-decky
|
|
||||||
aiohttp
|
|
||||||
certifi
|
|
||||||
];
|
|
||||||
};
|
|
||||||
devices.steamdeck = {
|
devices.steamdeck = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableGyroDsuService = true;
|
enableGyroDsuService = true;
|
||||||
|
@ -39,9 +15,4 @@
|
||||||
desktopSession = "hyprland";
|
desktopSession = "hyprland";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
python3
|
|
||||||
];
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
programs.hyprland.enable = true;
|
programs.hyprland.enable = true;
|
||||||
imports = [
|
imports = [
|
||||||
./fuzzel.nix
|
./fuzzel.nix
|
||||||
./hyprexit.nix
|
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
./hyprpaper.nix
|
./hyprpaper.nix
|
||||||
./mako.nix
|
./mako.nix
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
(pkgs.writeShellScriptBin "hyprexit" ''
|
|
||||||
${hyprland}/bin/hyprctl dispatch exit
|
|
||||||
${systemd}/bin/loginctl terminate-user willifan
|
|
||||||
'')
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
monitor = [
|
monitor = [
|
||||||
", preffered, auto, 1"
|
", preffered, auto, 1"
|
||||||
"eDP-1, preffered, 0x0, 1.25, transform, 3"
|
"eDP-1, 1280x800, 0x0, 1.5, transform, 1"
|
||||||
];
|
];
|
||||||
# Execute your favorite apps at launch
|
# Execute your favorite apps at launch
|
||||||
exec-once = [
|
exec-once = [
|
||||||
|
@ -45,8 +45,6 @@
|
||||||
|
|
||||||
touchpad.natural_scroll = "yes";
|
touchpad.natural_scroll = "yes";
|
||||||
|
|
||||||
touchdevice.transform = 3;
|
|
||||||
|
|
||||||
sensitivity = -0.8; # -1.0 - 1.0, 0 means no modification.
|
sensitivity = -0.8; # -1.0 - 1.0, 0 means no modification.
|
||||||
numlock_by_default = 1;
|
numlock_by_default = 1;
|
||||||
special_fallthrough = true;
|
special_fallthrough = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue