feat(desktop/firefox): add synced profile support and move desktop config
This commit is contained in:
parent
7e256c954d
commit
02c356494a
6 changed files with 82 additions and 47 deletions
28
systems/x86_64-linux/desktop.nix
Normal file
28
systems/x86_64-linux/desktop.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
desktop = {
|
||||
browser.firefox = {
|
||||
enable = true;
|
||||
syncedProfiles = [
|
||||
"rafiq"
|
||||
"test"
|
||||
];
|
||||
};
|
||||
windowManager = "hyprland";
|
||||
terminal = "ghostty";
|
||||
lockscreen = "hyprlock";
|
||||
notification-daemon = "mako";
|
||||
launcher = "fuzzel";
|
||||
status-bar = "waybar";
|
||||
media-player = "vlc";
|
||||
mainMonitor = {
|
||||
id = "desc:OOO AN-270W04K";
|
||||
scale = "2";
|
||||
resolution = "3840x2160";
|
||||
refresh-rate = "60";
|
||||
};
|
||||
enableSpotifyd = true;
|
||||
enableSteam = true;
|
||||
enableVR = true;
|
||||
enableSunshine = true;
|
||||
};
|
||||
}
|
|
@ -1,5 +1,8 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
../common.nix
|
||||
../desktop.nix
|
||||
];
|
||||
|
||||
system = {
|
||||
hostname = "mellinoe";
|
||||
|
@ -14,20 +17,4 @@
|
|||
};
|
||||
platform = "intel";
|
||||
};
|
||||
|
||||
desktop = {
|
||||
windowManager = "hyprland";
|
||||
browser = "firefox";
|
||||
terminal = "ghostty";
|
||||
lockscreen = "hyprlock";
|
||||
notification-daemon = "mako";
|
||||
launcher = "fuzzel";
|
||||
status-bar = "waybar";
|
||||
mainMonitor = {
|
||||
id = "BOE 0x088B";
|
||||
scale = "2";
|
||||
resolution = "1920x1280";
|
||||
refresh-rate = "60";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = lib.singleton ../common.nix;
|
||||
imports = [
|
||||
../common.nix
|
||||
../desktop.nix
|
||||
];
|
||||
|
||||
system = {
|
||||
hostname = "nemesis";
|
||||
|
@ -20,27 +19,6 @@
|
|||
gpu = "nvidia";
|
||||
};
|
||||
|
||||
desktop = {
|
||||
windowManager = "hyprland";
|
||||
browser = "firefox";
|
||||
terminal = "ghostty";
|
||||
lockscreen = "hyprlock";
|
||||
notification-daemon = "mako";
|
||||
launcher = "fuzzel";
|
||||
status-bar = "waybar";
|
||||
media-player = "vlc";
|
||||
mainMonitor = {
|
||||
id = "desc:OOO AN-270W04K";
|
||||
scale = "2";
|
||||
resolution = "3840x2160";
|
||||
refresh-rate = "60";
|
||||
};
|
||||
enableSpotifyd = true;
|
||||
enableSteam = true;
|
||||
enableVR = true;
|
||||
enableSunshine = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
tor = {
|
||||
enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue