Added a vim config and put everything in my prefered indentation style.

This commit is contained in:
2025-10-12 11:44:48 -05:00
parent 89c9bd4996
commit 9cb89b9aeb
12 changed files with 509 additions and 270 deletions

146
flake.lock generated
View File

@@ -1,5 +1,44 @@
{ {
"nodes": { "nodes": {
"flake-parts": {
"inputs": {
"nixpkgs-lib": [
"nixvim",
"nixpkgs"
]
},
"locked": {
"lastModified": 1759362264,
"narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "758cf7296bee11f1706a574c77d072b8a7baa881",
"type": "github"
},
"original": {
"owner": "hercules-ci",
"repo": "flake-parts",
"type": "github"
}
},
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@@ -20,6 +59,34 @@
"type": "github" "type": "github"
} }
}, },
"ixx": {
"inputs": {
"flake-utils": [
"nixvim",
"nuschtosSearch",
"flake-utils"
],
"nixpkgs": [
"nixvim",
"nuschtosSearch",
"nixpkgs"
]
},
"locked": {
"lastModified": 1754860581,
"narHash": "sha256-EM0IE63OHxXCOpDHXaTyHIOk2cNvMCGPqLt/IdtVxgk=",
"owner": "NuschtOS",
"repo": "ixx",
"rev": "babfe85a876162c4acc9ab6fb4483df88fa1f281",
"type": "github"
},
"original": {
"owner": "NuschtOS",
"ref": "v0.1.1",
"repo": "ixx",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1759831965, "lastModified": 1759831965,
@@ -36,10 +103,87 @@
"type": "github" "type": "github"
} }
}, },
"nixvim": {
"inputs": {
"flake-parts": "flake-parts",
"nixpkgs": [
"nixpkgs"
],
"nuschtosSearch": "nuschtosSearch",
"systems": "systems_2"
},
"locked": {
"lastModified": 1760245579,
"narHash": "sha256-VnWatwwsLHkgWO6R3N71nQiacOKhpmEBPbasGdr3Ogk=",
"owner": "nix-community",
"repo": "nixvim",
"rev": "dc8dea66e8b02fcee6711ec0c72932bf4a033069",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "nixvim",
"type": "github"
}
},
"nuschtosSearch": {
"inputs": {
"flake-utils": "flake-utils",
"ixx": "ixx",
"nixpkgs": [
"nixvim",
"nixpkgs"
]
},
"locked": {
"lastModified": 1758662783,
"narHash": "sha256-igrxT+/MnmcftPOHEb+XDwAMq3Xg1Xy7kVYQaHhPlAg=",
"owner": "NuschtOS",
"repo": "search",
"rev": "7d4c0fc4ffe3bd64e5630417162e9e04e64b27a4",
"type": "github"
},
"original": {
"owner": "NuschtOS",
"repo": "search",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"nixvim": "nixvim"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"systems_2": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
} }
} }
}, },

View File

@@ -1,29 +1,34 @@
{ {
description = "Lily's NixOS Flake. LiNix"; description = "Lily's NixOS Flake. LiNix";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; nixvim = {
url = "github:nix-community/nixvim";
outputs = { self, nixpkgs, home-manager }@inputs: { inputs.nixpkgs.follows = "nixpkgs";
};
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello; };
packages.x86_64-linux.default = self.packages.x86_64-linux.hello; outputs = { self, nixpkgs, home-manager, nixvim }@inputs: {
nixosConfigurations = { packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
lily-desktop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
modules = [
./hosts/desktop/configuration.nix nixosConfigurations = {
inputs.home-manager.nixosModules.default lily-desktop = nixpkgs.lib.nixosSystem {
]; system = "x86_64-linux";
specialArgs = { inherit inputs; }; modules = [
./hosts/desktop/configuration.nix
inputs.home-manager.nixosModules.default
inputs.nixvim.nixosModules.nixvim
];
specialArgs = { inherit inputs; };
};
}; };
}; };
};
} }

View File

@@ -1,61 +1,62 @@
{ config, pkgs, inputs, ... }: { config, pkgs, inputs, ... }:
{ {
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../modules/nixos/localization.nix ../../modules/nixos/localization.nix
../../modules/nixos/ai/index.nix ../../modules/nixos/ai/index.nix
../../modules/nixos/gnome/gnome.nix ../../modules/nixos/gnome/gnome.nix
inputs.home-manager.nixosModules.default ../../modules/home/vim.nix
]; inputs.home-manager.nixosModules.default
];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "lily-desktop"; # Define your hostname. networking.hostName = "lily-desktop"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary # Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = true; services.xserver.enable = true;
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;
# Enable sound with pipewire. # Enable sound with pipewire.
services.pulseaudio.enable = false; services.pulseaudio.enable = false;
security.rtkit.enable = true; security.rtkit.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
# If you want to use JACK applications, uncomment this # If you want to use JACK applications, uncomment this
#jack.enable = true; #jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default, # use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now) # no need to redefine it in your config for now)
#media-session.enable = true; #media-session.enable = true;
}; };
# Enable touchpad support (enabled default in most desktopManager). # Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true; # services.xserver.libinput.enable = true;
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
users.users.lily = { users.users.lily = {
isNormalUser = true; isNormalUser = true;
description = "Lily Iliana Luna Ylva Anderson Appleseed Grigaitis"; description = "Lily Iliana Luna Ylva Anderson Appleseed Grigaitis";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [ packages = with pkgs; [
# thunderbird # thunderbird
]; ];
}; };
home-manager = { home-manager = {
extraSpecialArgs = { inherit inputs; }; extraSpecialArgs = { inherit inputs; };
@@ -64,67 +65,67 @@
}; };
}; };
programs.nh = { programs.nh = {
enable = true; enable = true;
flake = "/home/lily/Programming/New LiNix"; flake = "/home/lily/Programming/New LiNix";
}; };
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Install firefox. # Install firefox.
programs.firefox.enable = true; programs.firefox.enable = true;
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. #vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget wget
tree tree
htop htop
nvtopPackages.full nvtopPackages.full
libreoffice-fresh libreoffice-fresh
hunspell hunspell
hunspellDicts.en_US hunspellDicts.en_US
hunspellDicts.en_US-large hunspellDicts.en_US-large
nh nh
steam-run steam-run
git git
]; ];
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
# started in user sessions. # started in user sessions.
# programs.mtr.enable = true; # programs.mtr.enable = true;
# programs.gnupg.agent = { # programs.gnupg.agent = {
# enable = true; # enable = true;
# enableSSHSupport = true; # enableSSHSupport = true;
# }; # };
# List services that you want to enable: # List services that you want to enable:
# Enable the OpenSSH daemon. # Enable the OpenSSH daemon.
services.openssh.enable = true; services.openssh.enable = true;
# Open ports in the firewall. # Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 22 ]; networking.firewall.allowedTCPPorts = [ 22 ];
# networking.firewall.allowedUDPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether. # Or disable the firewall altogether.
# networking.firewall.enable = false; # networking.firewall.enable = false;
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave # on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system. # this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option # Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "25.05"; # Did you read the comment? system.stateVersion = "25.05"; # Did you read the comment?
} }

View File

@@ -4,17 +4,17 @@
{ config, lib, pkgs, modulesPath, ... }: { config, lib, pkgs, modulesPath, ... }:
{ {
imports = imports =
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ "nvidia" ]; boot.initrd.kernelModules = [ "nvidia" ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ boot.extraModulePackages = [
config.boot.kernelPackages.nvidiaPackages.stable config.boot.kernelPackages.nvidiaPackages.stable
]; ];
hardware.graphics = { hardware.graphics = {
enable = true; enable = true;
enable32Bit = true; enable32Bit = true;
}; };
@@ -29,29 +29,29 @@ hardware.graphics = {
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/8279665b-b695-4747-9206-9cc06b7fe303"; { device = "/dev/disk/by-uuid/8279665b-b695-4747-9206-9cc06b7fe303";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@" ]; options = [ "subvol=@" ];
}; };
boot.initrd.luks.devices."luks-8573b24b-461f-40bf-b16b-9de1207c0696".device = "/dev/disk/by-uuid/8573b24b-461f-40bf-b16b-9de1207c0696"; boot.initrd.luks.devices."luks-8573b24b-461f-40bf-b16b-9de1207c0696".device = "/dev/disk/by-uuid/8573b24b-461f-40bf-b16b-9de1207c0696";
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/383D-97DA"; { device = "/dev/disk/by-uuid/383D-97DA";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ]; options = [ "fmask=0077" "dmask=0077" ];
}; };
swapDevices = [ ]; swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction # still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp42s0.useDHCP = lib.mkDefault true; # networking.interfaces.enp42s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
} }

View File

@@ -1,76 +1,78 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
# Home Manager needs a bit of information about you and the paths it should imports = [ /*../../modules/home/vim.nix*/ ];
# manage.
home.username = "lily";
home.homeDirectory = "/home/lily";
# This value determines the Home Manager release that your configuration is # Home Manager needs a bit of information about you and the paths it should
# compatible with. This helps avoid breakage when a new Home Manager release # manage.
# introduces backwards incompatible changes. home.username = "lily";
# home.homeDirectory = "/home/lily";
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "25.05"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your # This value determines the Home Manager release that your configuration is
# environment. # compatible with. This helps avoid breakage when a new Home Manager release
home.packages = [ # introduces backwards incompatible changes.
# # Adds the 'hello' command to your environment. It prints a friendly #
# # "Hello, world!" when run. # You should not change this value, even if you update Home Manager. If you do
# pkgs.hello # want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "25.05"; # Please read the comment before changing.
# # It is sometimes useful to fine-tune packages, for example, by applying # The home.packages option allows you to install Nix packages into your
# # overrides. You can do that directly here, just don't forget the # environment.
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of home.packages = [
# # fonts? # # Adds the 'hello' command to your environment. It prints a friendly
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; }) # # "Hello, world!" when run.
# pkgs.hello
# # You can also create simple shell scripts directly inside your # # It is sometimes useful to fine-tune packages, for example, by applying
# # configuration. For example, this adds a command 'my-hello' to your # # overrides. You can do that directly here, just don't forget the
# # environment: # # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# (pkgs.writeShellScriptBin "my-hello" '' # # fonts?
# echo "Hello, ${config.home.username}!" # (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
# '')
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # # You can also create simple shell scripts directly inside your
# plain files is through 'home.file'. # # configuration. For example, this adds a command 'my-hello' to your
home.file = { # # environment:
# # Building this configuration will create a copy of 'dotfiles/screenrc' in # (pkgs.writeShellScriptBin "my-hello" ''
# # the Nix store. Activating the configuration will then make '~/.screenrc' a # echo "Hello, ${config.home.username}!"
# # symlink to the Nix store copy. # '')
# ".screenrc".source = dotfiles/screenrc; ];
# # You can also set the file content immediately. # Home Manager is pretty good at managing dotfiles. The primary way to manage
# ".gradle/gradle.properties".text = '' # plain files is through 'home.file'.
# org.gradle.console=verbose home.file = {
# org.gradle.daemon.idletimeout=3600000 # # Building this configuration will create a copy of 'dotfiles/screenrc' in
# ''; # # the Nix store. Activating the configuration will then make '~/.screenrc' a
}; # # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# Home Manager can also manage your environment variables through # # You can also set the file content immediately.
# 'home.sessionVariables'. These will be explicitly sourced when using a # ".gradle/gradle.properties".text = ''
# shell provided by Home Manager. If you don't want to manage your shell # org.gradle.console=verbose
# through Home Manager then you have to manually source 'hm-session-vars.sh' # org.gradle.daemon.idletimeout=3600000
# located at either # '';
# };
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/lily/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
# EDITOR = "emacs";
};
# Let Home Manager install and manage itself. # Home Manager can also manage your environment variables through
programs.home-manager.enable = true; # 'home.sessionVariables'. These will be explicitly sourced when using a
# shell provided by Home Manager. If you don't want to manage your shell
# through Home Manager then you have to manually source 'hm-session-vars.sh'
# located at either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/lily/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
# EDITOR = "emacs";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
} }

87
modules/home/vim.nix Executable file
View File

@@ -0,0 +1,87 @@
{ pkgs, lib, nixvim, ... }:
{
imports = [ /*inputs.nixvim.nixosModules.nixvim*/ ];
programs.nixvim = {
enable = true;
defaultEditor = true;
enableMan = true;
globals.mapleader = "`";
viAlias = true;
vimAlias = true;
opts = {
tabstop = 4;
softtabstop = 0;
shiftwidth = 4;
expandtab = false;
autoindent = true;
number = true;
relativenumber = true;
ignorecase = true;
smartcase = true;
};
plugins.lsp = {
enable = true;
servers = {
rust_analyzer = {
enable = true;
installCargo = false;
installRustc = false;
};
nixd = {
enable = true;
# settings.formatting.command = [ "alejandra" ];
};
};
};
plugins.treesitter = {
enable = true;
nixvimInjections = true;
# ensure_installed = "all";
settings = {
highlight = {
enable = true;
disable = [ "org" ];
};
};
grammarPackages = pkgs.vimPlugins.nvim-treesitter.allGrammars;
};
extraPlugins = with pkgs.vimPlugins; [
orgmode
vim-nix
];
extraConfigLua = ''
-- Tree-sitter configuration
require'nvim-treesitter.configs'.setup {
-- If TS highlights are not enabled at all, or disabled via ``disable`` prop, highlighting will fallback to default Vim syntax highlighting
highlight = {
-- enable = true,
-- disable = {'org'}, -- Remove this to use TS highlighter for some of the highlights (Experimental)
additional_vim_regex_highlighting = {'org'}, -- Required since TS highlighter doesn't support all syntax features (conceal)
},
-- ensure_installed = {'org'}, -- Or run :TSUpdate org
}
require('orgmode').setup({
org_agenda_files = {'~/Org/Agenda/agenda.org', '~/Public/Org/Agenda/agenda.org'},
org_default_notes_file = '~/Dropbox/org/refile.org',
})
'';
extraConfigVim = ''
filetype indent off
set noexpandtab
set list
set listchars=tab:\ ,trail:·
autocmd FileType nix setlocal noexpandtab tabstop=4 shiftwidth=4 softtabstop=0
'';
#colorschemes.base16.enable = true;
};
}

View File

@@ -1,8 +1,8 @@
{ config, pkgs, inputs, ... }: { config, pkgs, inputs, ... }:
{ {
imports = [ imports = [
./ollama.nix ./ollama.nix
./open-webui.nix ./open-webui.nix
./sillytavern.nix ./sillytavern.nix
]; ];
} }

View File

@@ -1,6 +1,6 @@
{ config, pkgs, inputs, ... }: { config, pkgs, inputs, ... }:
{ {
imports = [ ]; imports = [ ];
services.ollama = { services.ollama = {
enable = true; enable = true;
acceleration = "cuda"; acceleration = "cuda";

View File

@@ -1,8 +1,8 @@
{ config, pkgs, inputs, ... }: { config, pkgs, inputs, ... }:
{ {
imports = [ ]; imports = [ ];
services.open-webui = { services.open-webui = {
#enable = true; #enable = true;
enable = false; enable = false;
host = "0.0.0.0"; host = "0.0.0.0";
openFirewall = true; openFirewall = true;
@@ -15,4 +15,4 @@
ENABLE_LOGIN_FORM = "True"; ENABLE_LOGIN_FORM = "True";
}; };
}; };
} }

View File

@@ -1,31 +1,31 @@
{ config, pkgs, inputs, ... }: { config, pkgs, inputs, ... }:
{ {
imports = [ ]; imports = [ ];
services.sillytavern = { services.sillytavern = {
enable = true; enable = true;
#enable = false; #enable = false;
port = 9002; port = 9002;
listen = true; listen = true;
listenAddressIPv4 = "127.0.0.1"; listenAddressIPv4 = "127.0.0.1";
whitelist = true; whitelist = true;
#user = "tavern"; #user = "tavern";
#group = "tavern"; #group = "tavern";
}; };
services.nginx = { services.nginx = {
enable = true; enable = true;
#additionalModules = [ pkgs.nginxModules.pam ]; #additionalModules = [ pkgs.nginxModules.pam ];
virtualHosts."192.168.0.101" = { virtualHosts."192.168.0.101" = {
locations."/" = { locations."/" = {
proxyPass = "http://localhost:9002"; proxyPass = "http://localhost:9002";
extraConfig = '' extraConfig = ''
auth_basic "Password Required"; auth_basic "Password Required";
auth_basic_user_file /etc/htpasswd; auth_basic_user_file /etc/htpasswd;
''; '';
}; };
}; };
}; };
# Open ports in the firewall. # Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 80 ]; #9002 networking.firewall.allowedTCPPorts = [ 80 ]; #9002
} }

View File

@@ -1,36 +1,36 @@
{ config, pkgs, inputs, ... }: { config, pkgs, inputs, ... }:
{ {
imports = [ ]; imports = [ ];
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = true; services.xserver.enable = true;
#Disable Suspend #Disable Suspend
systemd.targets.sleep.enable = false; systemd.targets.sleep.enable = false;
systemd.targets.suspend.enable = false; systemd.targets.suspend.enable = false;
systemd.targets.hibernate.enable = false; systemd.targets.hibernate.enable = false;
systemd.targets.hybrid-sleep.enable = false; systemd.targets.hybrid-sleep.enable = false;
# Enable the GNOME Desktop Environment. # Enable the GNOME Desktop Environment.
services.displayManager.gdm.enable = true; services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true; services.desktopManager.gnome.enable = true;
#Packages #Packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
gnome-tweaks gnome-tweaks
gnome-extension-manager gnome-extension-manager
gnomeExtensions.pop-shell gnomeExtensions.pop-shell
gnomeExtensions.arcmenu gnomeExtensions.arcmenu
gnomeExtensions.dash-to-panel gnomeExtensions.dash-to-panel
gnomeExtensions.dash-to-dock gnomeExtensions.dash-to-dock
gnomeExtensions.just-perfection gnomeExtensions.just-perfection
gnomeExtensions.blur-my-shell gnomeExtensions.blur-my-shell
]; ];
environment.gnome.excludePackages = with pkgs; [ environment.gnome.excludePackages = with pkgs; [
epiphany epiphany
geary geary
gnome-tour gnome-tour
]; ];
} }

View File

@@ -1,29 +1,29 @@
{ config, pkgs, inputs, ... }: { config, pkgs, inputs, ... }:
{ {
imports = imports =
[ ]; [ ];
# Set your time zone. # Set your time zone.
time.timeZone = "America/Chicago"; time.timeZone = "America/Chicago";
# Select internationalisation properties. # Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = { i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8"; LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8"; LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8"; LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8"; LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8"; LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8"; LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8"; LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8"; LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8"; LC_TIME = "en_US.UTF-8";
}; };
# Configure keymap in X11 # Configure keymap in X11
services.xserver.xkb = { services.xserver.xkb = {
layout = "us"; layout = "us";
variant = ""; variant = "";
}; };
} }