move back to gnome and add some documentation

This commit is contained in:
iFargle 2023-07-07 07:47:28 +09:00
parent e5aabc6494
commit 9fa9b0c798
4 changed files with 10 additions and 4 deletions

View file

@ -2,7 +2,11 @@
Repo for nix configuration files Repo for nix configuration files
--- ---
# Information # Information
* Tons of good examples here - https://github.com/Mic92/dotfiles/blob/main/nixos/modules/promtail.nix * Home Manager Documentation - [Link](https://nix-community.github.io/home-manager/index.html)
* Home Manager Options Search - [Link](https://mipmip.github.io/home-manager-option-search/)
* NixOS Documentation - 23.05 - Link
* NixOS Packages / Options Search - [Link](https://search.nixos.org/)
* Tons of good examples here - [Link](https://github.com/Mic92/dotfiles/blob/main/nixos/modules/)
--- ---
# Theming # Theming

View file

@ -1,7 +1,10 @@
{ config, pkgs, ... }: { { config, pkgs, ... }: {
# Configure BASH exports # Configure BASH exports
# https://nix-community.github.io/home-manager/options.html # https://nix-community.github.io/home-manager/options.html
# https://github.com/justjanne/powerline-go
programs.powerline-go.enable = true; programs.powerline-go.enable = true;
programs = { programs = {
bash = { bash = {
enable = true; enable = true;

View file

@ -9,8 +9,7 @@
[ [
# Desktop Environments # Desktop Environments
./desktops/common.nix ./desktops/common.nix
./desktops/kde.nix ./desktops/gnome.nix
# ./desktops/gnome.nix
# Services # Services
./services/openssh.nix ./services/openssh.nix

View file

@ -1,7 +1,7 @@
{ config, pkgs, ... }: { { config, pkgs, ... }: {
home.stateVersion = "23.05"; home.stateVersion = "23.05";
imports = [ imports = [
# ./gnome-dconf.nix ./gnome-dconf.nix
../../common/dotfiles/git.nix ../../common/dotfiles/git.nix
../../common/dotfiles/neovim.nix ../../common/dotfiles/neovim.nix
../../common/dotfiles/bash.nix ../../common/dotfiles/bash.nix