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
|
# Place Files Inside Home Directory
|
||||||
home.file.".config/zaney-stinger.mov".source = ../files/media/zaney-stinger.mov;
|
home.file.".config/zaney-stinger.mov".source = ./files/media/zaney-stinger.mov;
|
||||||
home.file.".emoji".source = ../files/emoji;
|
home.file.".emoji".source = ./files/emoji;
|
||||||
home.file.".base16-themes".source = ../files/base16-themes;
|
home.file.".base16-themes".source = ./files/base16-themes;
|
||||||
home.file.".face".source = ../files/face.jpg;
|
home.file.".face".source = ./files/face.jpg;
|
||||||
|
home.file.".config/rofi/rofi.jpg".source = ./files/rofi.jpg;
|
||||||
home.file.".local/share/fonts" = {
|
home.file.".local/share/fonts" = {
|
||||||
source = ../files/fonts;
|
source = ./files/fonts;
|
||||||
recursive = true;
|
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;
|
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
|
# OpenGL
|
||||||
hardware.opengl = {
|
hardware.opengl = {
|
||||||
enable = true;
|
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: {
|
nixpkgs.config.packageOverrides = pkgs: {
|
||||||
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
|
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
|
||||||
};
|
};
|
||||||
|
4
home.nix
4
home.nix
@ -21,9 +21,9 @@
|
|||||||
./config/home/neofetch.nix
|
./config/home/neofetch.nix
|
||||||
./config/home/hyprland.nix
|
./config/home/hyprland.nix
|
||||||
./config/home/kitty.nix
|
./config/home/kitty.nix
|
||||||
./config/home/rofi.nix
|
# ./config/home/rofi.nix
|
||||||
./config/home/vim.nix
|
./config/home/vim.nix
|
||||||
./config/home/files.nix
|
# ./config/home/files.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Define Settings For Xresources
|
# Define Settings For Xresources
|
||||||
|
Loading…
Reference in New Issue
Block a user