mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -05:00
feat: fixed hyprland
This commit is contained in:
parent
a4afc18937
commit
7cf28c791c
11 changed files with 32 additions and 18 deletions
|
@ -84,7 +84,7 @@
|
|||
./profiles/user0
|
||||
./profiles/user1
|
||||
config.nixosModules.desktop
|
||||
config.nixosModules.plasma
|
||||
config.nixosModules.hyprland
|
||||
config.nixosModules.personal
|
||||
config.nixosModules.shared
|
||||
config.nixosModules.sops
|
||||
|
|
|
@ -50,6 +50,7 @@ in
|
|||
messaging
|
||||
sharing
|
||||
tools
|
||||
desktop
|
||||
;
|
||||
};
|
||||
};
|
||||
|
|
11
home/modules/cli/utilities/paMixer/default.nix
Normal file
11
home/modules/cli/utilities/paMixer/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
pamixer
|
||||
;
|
||||
};
|
||||
}
|
|
@ -22,7 +22,7 @@ in
|
|||
General = {
|
||||
disabledTrayIcon = true;
|
||||
showStartupLaunchMessage = false;
|
||||
# disabledGrimWarning = true;
|
||||
disabledGrimWarning = true;
|
||||
};
|
||||
};
|
||||
};
|
|
@ -23,4 +23,6 @@ in
|
|||
"bluetoothctl power on"
|
||||
"gsettings set org.gnome.desktop.interface cursor-theme 'catppuccin-mocha-dark-cursors'"
|
||||
"gsettings set org.gnome.desktop.interface cursor-size ${builtins.toString cursor.size}"
|
||||
"systemctl --user import-environment PATH"
|
||||
"systemctl --user restart xdg-desktop-portal.service"
|
||||
]
|
||||
|
|
|
@ -40,6 +40,7 @@ in
|
|||
inherit (modules)
|
||||
android
|
||||
audio
|
||||
bluetooth
|
||||
corectrl
|
||||
dconf
|
||||
disks
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
hardware = {
|
||||
bluetooth = {
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
imports = map (file: ./${file}.nix) [
|
||||
"bluetooth"
|
||||
"geoclue2"
|
||||
"greetd"
|
||||
"network"
|
||||
|
|
|
@ -9,12 +9,8 @@
|
|||
xdgOpenUsePortal = true;
|
||||
extraPortals = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
xdg-desktop-portal-wlr
|
||||
xdg-desktop-portal-gtk
|
||||
;
|
||||
inherit (pkgs.kdePackages)
|
||||
xdg-desktop-portal-kde
|
||||
;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -14,13 +14,13 @@ in
|
|||
{
|
||||
services = {
|
||||
ollama = {
|
||||
# acceleration = "rocm";
|
||||
# package = pkgs.ollama.override {
|
||||
# config = {
|
||||
# rocmSupport = true;
|
||||
# cudaSupport = false;
|
||||
# };
|
||||
# };
|
||||
acceleration = "rocm";
|
||||
package = pkgs.ollama.override {
|
||||
config = {
|
||||
rocmSupport = true;
|
||||
cudaSupport = false;
|
||||
};
|
||||
};
|
||||
enable = true;
|
||||
group = service.name;
|
||||
host = "http://${localhost}";
|
||||
|
|
|
@ -71,11 +71,11 @@ in
|
|||
in
|
||||
{
|
||||
"/" = {
|
||||
device = "/dev/disk/by-uuid/5c416d6a-9c2b-4b0c-9e0e-9bb3bf56a863";
|
||||
device = "/dev/disk/by-uuid/c22a06af-8855-4938-9d04-68cd4d88d7f0";
|
||||
fsType = "ext4";
|
||||
};
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/B1B8-E776";
|
||||
device = "/dev/disk/by-uuid/7B8C-1E95";
|
||||
fsType = "vfat";
|
||||
options = desktop.boot.options;
|
||||
};
|
||||
|
@ -85,7 +85,7 @@ in
|
|||
// (builtins.listToAttrs (map sambaMounts sambaDrives));
|
||||
|
||||
swapDevices = [
|
||||
{ device = "/dev/disk/by-uuid/644ad843-337d-429f-abb8-2423c8ed111e"; }
|
||||
{ device = "/dev/disk/by-uuid/8c9d0c0b-0bc8-442b-a3fd-02a37acd409f"; }
|
||||
];
|
||||
|
||||
systemd.tmpfiles.rules = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue