mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
fixed refreshrate on desktop
switch to neovim as a pager added parrot and mining modules deleted amd module moved the rest of vfio configuration to vfio.nix moved git from home-manager to system configuration
This commit is contained in:
parent
67b3e39735
commit
6b7ce7d133
25 changed files with 152 additions and 165 deletions
|
|
@ -11,5 +11,6 @@
|
|||
"MIN_WIDTH": 0,
|
||||
"MIN_HEIGHT": 0,
|
||||
"OPEN_ON_STARTUP": false,
|
||||
"MINIMIZE_TO_TRAY": false
|
||||
"MINIMIZE_TO_TRAY": false,
|
||||
"SKIP_HOST_UPDATE": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
package = pkgs.gitMinimal;
|
||||
userName = "ISnortPennies";
|
||||
userEmail = "ISnortPennies@protonmail.com";
|
||||
};
|
||||
}
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
username,
|
||||
settings,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
|
|
@ -9,14 +8,13 @@
|
|||
./sxhkd.nix
|
||||
./theme.nix
|
||||
./picom.nix
|
||||
./git.nix
|
||||
./spicetify.nix
|
||||
./neovim
|
||||
];
|
||||
xsession.numlock.enable = true;
|
||||
home = {
|
||||
homeDirectory = "/home/${username}";
|
||||
stateVersion = "23.05";
|
||||
homeDirectory = "/home/${settings.username}";
|
||||
stateVersion = settings.version;
|
||||
file = {
|
||||
".background-image".source = ../images/nix-stars.png;
|
||||
".config" = {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
programs = {
|
||||
librewolf = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ vim.g.indentLine_setConceal = 0
|
|||
vim.g.loaded = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
require("nvim-tree").setup {
|
||||
open_on_setup = true,
|
||||
open_on_setup = false,
|
||||
sort_by = "case_sensitive",
|
||||
view = {
|
||||
adaptive_size = true,
|
||||
|
|
@ -63,7 +63,9 @@ vim.cmd[[colorscheme moonfly]]
|
|||
-- pretty colors
|
||||
require("colorizer").setup()
|
||||
require("telescope").load_extension("fzy_native")
|
||||
require("gitsigns").setup()
|
||||
require("gitsigns").setup {
|
||||
current_line_blame = true,
|
||||
}
|
||||
require("nvim-autopairs").setup()
|
||||
|
||||
-- telescope keybinds
|
||||
|
|
|
|||
|
|
@ -1,17 +1,12 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{settings, ...}: {
|
||||
imports = [
|
||||
./theme.nix
|
||||
./git.nix
|
||||
./neovim
|
||||
];
|
||||
home = {
|
||||
username = "root";
|
||||
homeDirectory = "/root";
|
||||
stateVersion = "23.05";
|
||||
stateVersion = settings.version;
|
||||
file = {
|
||||
".config/neofetch/config.conf" = {
|
||||
source = ./config/neofetch/config.conf;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
spicetify-nix,
|
||||
...
|
||||
}: let
|
||||
|
|
|
|||
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
pkgs,
|
||||
home-manager,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue