This commit is contained in:
joygnu 2024-07-01 16:57:23 +02:00
parent 1048f2ca60
commit 464f65ec47
3 changed files with 18 additions and 16 deletions

View file

@ -19,6 +19,8 @@
home.sessionVariables = {
EDITOR = "vim";
};
programs.gpg.enable =true;
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;

View file

@ -1,12 +1,24 @@
{ config, inputs, pkgs, ... }:
{
services.blueman.enable = true;
hardware.bluetooth.enable = true;
virtualisation.docker.rootless.enable = true;
virtualisation.docker.enable = true;
nixpkgs.config.allowUnfree = true;
programs.steam.enable = true;
services = {
syncthing = {
enable = true;
user = "joy";
dataDir = "/home/joy/";
configDir = "/home/joy/.config/syncthing";
};
};
programs.hyprland.enable = true;
users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true;
programs.gnupg.agent.enable = true;
boot.initrd.luks.gpgSupport = true;
home-manager = {
extraSpecialArgs = {inherit inputs;};

View file

@ -1,20 +1,7 @@
{ config, pkgs, ... }:
{
services.blueman.enable = true;
hardware.bluetooth.enable = true;
virtualisation.docker.rootless.enable = true;
virtualisation.docker.enable = true;
nixpkgs.config.allowUnfree = true;
programs.steam.enable = true;
services = {
syncthing = {
enable = true;
user = "joy";
dataDir = "/home/joy/";
configDir = "/home/joy/.config/syncthing";
};
};
environment.systemPackages = with pkgs; [
#Games
alacritty
@ -56,6 +43,7 @@
gnome.gnome-calculator
gnome.gnome-disk-utility
#random utils
pass
tree
rofi-wayland
screen