mirror of
https://github.com/librephoenix/nixos-config
synced 2025-12-01 15:14:01 +05:30
Some minor updates and fixes
This commit is contained in:
parent
44136d40b5
commit
870d360e8a
7 changed files with 19 additions and 128 deletions
|
|
@ -1,4 +1,9 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
config = {
|
||||
|
|
@ -30,7 +35,7 @@
|
|||
virtualization = {
|
||||
virtualMachines.enable = true;
|
||||
};
|
||||
ai.enable = true;
|
||||
ai.enable = false; # local-ai broken in nixpkgs
|
||||
|
||||
# wm
|
||||
hyprland.enable = true;
|
||||
|
|
@ -42,6 +47,10 @@
|
|||
bluetooth.enable = true;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
freerdp
|
||||
];
|
||||
|
||||
home.sessionVariables = lib.mkIf config.userSettings.hyprland.enable {
|
||||
AQ_DRM_DEVICES = lib.mkForce "/dev/dri/card2:/dev/dri/card1";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue