This commit is contained in:
joygnu 2024-07-08 14:52:27 +02:00
parent a30711ef62
commit 3438e5253d
20 changed files with 26 additions and 59 deletions

View file

@ -1,4 +1,4 @@
{pkgs, ...}:
{...}:
{

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ ... }:
{
programs.alacritty = {

View file

@ -1,4 +1,4 @@
{inputs, ...}: {
{ ...}: {
programs.git = {
enable = true;
userEmail = "mail@joygnu.org";

View file

@ -1,10 +1,9 @@
{
pkgs,
config,
...
}: let
{ pkgs, ... }:
let
gruvboxPlus = import ./gruvbox-plus.nix {inherit pkgs;};
in {
in
{
home.file = {
".local/share/icons/GruvboxPlus".source = "${gruvboxPlus}";
};

View file

@ -1,7 +1,10 @@
{pkgs}: let
{pkgs}:
let
link = "https://github.com/SylEleuth/gruvbox-plus-icon-pack/releases/download/v3.1/gruvbox-plus-icon-pack-3.1.zip";
in
pkgs.stdenv.mkDerivation {
pkgs.stdenv.mkDerivation
{
name = "gruvbox-plus";
src = pkgs.fetchurl {

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: {
{ pkgs, ... }: {
home.packages = with pkgs; [
rofi-wayland
pavucontrol

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

View file

@ -1,5 +1,5 @@
{ config }:
{ ... }:
{
home.username = "joy";

View file

@ -30,7 +30,7 @@
enable = true;
renderer.groupEmpty = true;
};
# lualine.enable = true;
lualine.enable = true;
};
keymaps = [

View file

@ -1,4 +1,4 @@
{ pkgs, config, lib, ... }:
{ pkgs, lib, ... }:
{
programs.rofi = {

View file

@ -1,24 +0,0 @@
{ pkgs, ... }:
{
stylix.base16Scheme = {
base00 = "282828";
base01 = "3c3836";
base02 = "504945";
base03 = "665c54";
base04 = "bdae93";
base05 = "d5c4a1";
base06 = "ebdbb2";
base07 = "fbf1c7";
base08 = "fb4934";
base09 = "fe8019";
base0A = "fabd2f";
base0B = "b8bb26";
base0C = "8ec07c";
base0D = "83a598";
base0E = "d3869b";
base0F = "d65d0e";
};
stylix.image = ../hyprland/wallpaper.png;
}

View file

@ -1,4 +1,4 @@
{ config, pkgs, ...} :
{ config, ...} :
{
programs.zsh = {

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, modulesPath, inputs, ... }:
{ inputs, ... }:
{
networking.hostName = "desktop";
networking.networkmanager.enable = true;
@ -10,6 +10,5 @@
../../modules
./hardware.nix
inputs.home-manager.nixosModules.default
# nixvim.nixosModules.nixvim
];
}

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, modulesPath, inputs, ... }:
{ inputs, ... }:
{
networking.hostName = "laptop";
networking.networkmanager.enable = true;

View file

@ -1,4 +1,4 @@
{ config, pkgs, ...}:
{ pkgs, ... }:
{
fonts.packages = with pkgs; [

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ ... }:
{

View file

@ -1,4 +1,4 @@
{ config, inputs, pkgs, ... }:
{ inputs, pkgs, ... }:
{
services.blueman.enable = true;
@ -23,11 +23,6 @@ programs.gnupg.agent = {
enableSSHSupport = true;
};
#programs.neovim = {
# enable = true;
# defaultEditor = true;
#};
programs.hyprland.enable = true;
users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true;

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ ... }:
{
sound.enable = true;

View file

@ -1,14 +1,11 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
# Enable dconf (System Management Tool)
programs.dconf.enable = true;
# Add user to libvirtd group
users.users.joy.extraGroups = [ "libvirtd" ];
# Install necessary packages
environment.systemPackages = with pkgs; [
virt-manager
virt-viewer
@ -18,10 +15,8 @@
win-spice
virtiofsd
freerdp
#gnome.adwaita-icon-theme
];
# Manage the virtualisation services
virtualisation = {
libvirtd = {
enable = true;