wip
This commit is contained in:
@@ -1,14 +0,0 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
unityhub
|
||||
code-cursor
|
||||
dotnet-sdk_8
|
||||
mono
|
||||
csharpier
|
||||
];
|
||||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gnome-shell
|
||||
gnome-control-center
|
||||
];
|
||||
|
||||
dconf.settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
text-scaling-factor = "1.5";
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -8,10 +8,27 @@
|
||||
openssl.dev
|
||||
taplo
|
||||
sccache
|
||||
mold-wrapped
|
||||
clang
|
||||
];
|
||||
|
||||
home.sessionPath = [ "\${CARGO_HOME:-~/.cargo}/bin" ];
|
||||
|
||||
home.file.".cargo/config.toml".text = ''
|
||||
[target.x86_64-unknown-linux-gnu]
|
||||
linker = "clang"
|
||||
rustflags = ["-C", "link-arg=-fuse-ld=mold"]
|
||||
|
||||
[build]
|
||||
rustflags = ["-Z", "threads=12"]
|
||||
|
||||
# [unstable]
|
||||
# codegen-backend = true
|
||||
#
|
||||
# [profile.dev]
|
||||
# codegen-backend = "cranelift"
|
||||
'';
|
||||
|
||||
# systemd.user.services.ra-multiplex = {
|
||||
# Service = {
|
||||
# ExecStart = "${pkgs.ra-multiplex}/bin/ra-multiplex server";
|
||||
|
||||
@@ -13,7 +13,6 @@
|
||||
../common/programs/default.nix
|
||||
../common/programs/desktop
|
||||
../common/programs/hyprland
|
||||
../common/programs/gnome-shell.nix
|
||||
../common/programs/kitty.nix
|
||||
../common/programs/ghostty.nix
|
||||
../common/programs/syncthing.nix
|
||||
@@ -21,7 +20,6 @@
|
||||
../common/features/xdg.nix
|
||||
../common/features/bluetooth.nix
|
||||
../common/features/ledger.nix
|
||||
../common/features/unity.nix
|
||||
./monitors.nix
|
||||
];
|
||||
|
||||
@@ -40,20 +38,8 @@
|
||||
"move 100%-800 100%-800, class:ethui"
|
||||
"noinitialfocus, class:ethui"
|
||||
|
||||
# unity
|
||||
"minsize 230 200, initialTitle:(UnityEditor.AddComponent.AddComponentWindow)"
|
||||
"minsize 300 200, initialTitle:(UnityEditor.IMGUI.Controls.AdvancedDropdownWindow)"
|
||||
"minsize 230 200, initialTitle:(UnityEditor.Rendering.FilterWindow)"
|
||||
"minsize 300 200, initialTitle:(UnityEditor.LayerVisibilityWindow)"
|
||||
"minsize 230 500, initialTitle:(UnityEditor.AnnotationWindow)"
|
||||
"minsize 150 300, initialTitle:(UnityEditor.PopupWindow)"
|
||||
"minsize 500 350, initialTitle:(Select Preset...)"
|
||||
"minsize 300 100, initialTitle:(UnityEditor.Snap.GridSettingsWindow)"
|
||||
"minsize 500 500, initialTitle:(UnityEngine.InputSystem.Editor.AdvancedDropdownWindow) "
|
||||
"move 50% 90%, title:^Unity$, onworkspace:2"
|
||||
"noinitialfocus, title:^Unity$, onworkspace:2"
|
||||
|
||||
"workspace 1 silent, class:bevy-.*"
|
||||
"noinitialfocus, class:bevy-.*"
|
||||
];
|
||||
|
||||
env = [
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnome-shell
|
||||
];
|
||||
|
||||
environment.variables = {
|
||||
GDK_SCALE = "2";
|
||||
GDK_DPI_SCALE = "1.5";
|
||||
};
|
||||
}
|
||||
@@ -2,7 +2,6 @@
|
||||
let
|
||||
tuigreet = "${pkgs.greetd.tuigreet}/bin/tuigreet";
|
||||
hyprland-session = "${pkgs.hyprland}/share/wayland-sessions";
|
||||
gnome-shell = "${pkgs.gnome-shell}/bin/gnome-shell";
|
||||
in
|
||||
{
|
||||
programs.hyprland.enable = true;
|
||||
@@ -14,7 +13,7 @@ in
|
||||
enable = true;
|
||||
settings = {
|
||||
default_session = {
|
||||
command = "${tuigreet} --time --remember --remember-session --sessions ${hyprland-session},${gnome-shell}";
|
||||
command = "${tuigreet} --time --remember --remember-session --sessions ${hyprland-session}";
|
||||
user = "greeter";
|
||||
};
|
||||
};
|
||||
@@ -24,5 +23,4 @@ in
|
||||
substituters = [ "https://hyprland.cachix.org" ];
|
||||
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -11,7 +11,6 @@
|
||||
../common/features/networking.nix
|
||||
../common/features/nvidia.nix
|
||||
../common/features/wayland.nix
|
||||
../common/features/gnome-shell.nix
|
||||
../common/features/pipewire.nix
|
||||
../common/features/docker.nix
|
||||
../common/features/fonts.nix
|
||||
|
||||
Reference in New Issue
Block a user