fix bugs, move unfinished vm hardware-config

This commit is contained in:
2022-09-18 11:07:22 +02:00
parent 09e22ff147
commit 4ee84173c7
9 changed files with 129 additions and 45 deletions

View File

@@ -11,7 +11,7 @@
# └─ hyprland.nix *
#
{ config, lib, pkgs, ... }:
{ config, lib, user, pkgs, ... }:
{
imports = [ ../../programs/waybar.nix ];

View File

@@ -13,7 +13,7 @@
[
./alacritty.nix
./rofi.nix
./waybar.nix
#./waybar.nix
#./games.nix
]
# Waybar.nix is pulled from modules/desktop/..

View File

@@ -2,7 +2,7 @@
# Bar
#
{ config, lib, pkgs, ...}:
{ config, lib, user, pkgs, ...}:
{
environment.systemPackages = with pkgs; [
@@ -17,10 +17,10 @@
})
];
home-manager.users.matthias = { # Home-manager waybar config
home-manager.users.${user} = { # Home-manager waybar config
programs.waybar = {
enable = true;
systemd ={
systemd = {
enable = true;
target = "sway-session.target"; # Needed for waybar to start automatically
};

48
modules/themes/colors.nix Normal file
View File

@@ -0,0 +1,48 @@
#
# System themes
#
{
scheme = {
doom = {
scheme = "Doom One Dark";
black = "000000";
red = "ff6c6b";
orange = "da8548";
yellow = "ecbe7b";
green = "95be65";
teal = "4db5bd";
blue = "6eaafb";
dark-blue = "2257a0";
magenta = "c678dd";
violet = "a9a1e1";
cyan = "6cdcf7";
dark-cyan = "5699af";
emphasis = "50536b";
text = "dfdfdf";
text-alt = "b2b2b2";
fg = "abb2bf";
bg = "282c34";
};
dracula = {
scheme = "Dracula";
base00 = "282936"; #background
base01 = "3a3c4e";
base02 = "4d4f68";
base03 = "626483";
base04 = "62d6e8";
base05 = "e9e9f4"; #foreground
base06 = "f1f2f8";
base07 = "f7f7fb";
base08 = "ea51b2";
base09 = "b45bcf";
base0A = "00f769";
base0B = "ebff87";
base0C = "a1efe4";
base0D = "62d6e8";
base0E = "b45bcf";
base0F = "00f769";
};
};
}

BIN
modules/themes/wall.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB