mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-02-03 01:59:13 +01:00
Switching to profiles, this is also probably broken
This commit is contained in:
parent
fce7d4df27
commit
1db4c3ae41
@ -2,12 +2,13 @@
|
||||
|
||||
{
|
||||
# Place Files Inside Home Directory
|
||||
home.file.".config/zaney-stinger.mov".source = ../files/media/zaney-stinger.mov;
|
||||
home.file.".emoji".source = ../files/emoji;
|
||||
home.file.".base16-themes".source = ../files/base16-themes;
|
||||
home.file.".face".source = ../files/face.jpg;
|
||||
home.file.".config/zaney-stinger.mov".source = ./files/media/zaney-stinger.mov;
|
||||
home.file.".emoji".source = ./files/emoji;
|
||||
home.file.".base16-themes".source = ./files/base16-themes;
|
||||
home.file.".face".source = ./files/face.jpg;
|
||||
home.file.".config/rofi/rofi.jpg".source = ./files/rofi.jpg;
|
||||
home.file.".local/share/fonts" = {
|
||||
source = ../files/fonts;
|
||||
source = ./files/fonts;
|
||||
recursive = true;
|
||||
};
|
||||
}
|
||||
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
@ -87,6 +87,4 @@
|
||||
margin: 0 -2 0 0;
|
||||
}
|
||||
'';
|
||||
|
||||
home.file.".config/rofi/rofi.jpg".source = ./files/rofi.jpg;
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ pkgs, config, lib, ... }:
|
||||
{ pkgs, config, lib, deviceProfile, ... }:
|
||||
|
||||
libmkIf (${deviceProfile} == "amd-desktop") {
|
||||
lib.mkIf ("${deviceProfile}" == "amd-desktop") {
|
||||
# OpenGL
|
||||
hardware.opengl = {
|
||||
enable = true;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ pkgs, config, lib, ... }:
|
||||
{ pkgs, config, lib, deviceProfile, ... }:
|
||||
|
||||
libmkIf (${deviceProfile} == "intel-laptop") {
|
||||
lib.mkIf ("${deviceProfile}" == "intel-laptop") {
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user