From 9fa9b0c798267d3187712dc0dc13d2892384d4ea Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 7 Jul 2023 07:47:28 +0900 Subject: [PATCH] move back to gnome and add some documentation --- README.md | 6 +++++- common/dotfiles/bash.nix | 3 +++ configuration.nix | 3 +-- users/albert/home.nix | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 764dada5..32aaffc8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,11 @@ Repo for nix configuration files --- # 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 diff --git a/common/dotfiles/bash.nix b/common/dotfiles/bash.nix index 9e60d95e..914450a1 100644 --- a/common/dotfiles/bash.nix +++ b/common/dotfiles/bash.nix @@ -1,7 +1,10 @@ { config, pkgs, ... }: { # Configure BASH exports # https://nix-community.github.io/home-manager/options.html + + # https://github.com/justjanne/powerline-go programs.powerline-go.enable = true; + programs = { bash = { enable = true; diff --git a/configuration.nix b/configuration.nix index a8f2342f..33775ae7 100644 --- a/configuration.nix +++ b/configuration.nix @@ -9,8 +9,7 @@ [ # Desktop Environments ./desktops/common.nix - ./desktops/kde.nix - # ./desktops/gnome.nix + ./desktops/gnome.nix # Services ./services/openssh.nix diff --git a/users/albert/home.nix b/users/albert/home.nix index 1a20ec10..3bd947bf 100644 --- a/users/albert/home.nix +++ b/users/albert/home.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: { home.stateVersion = "23.05"; imports = [ - # ./gnome-dconf.nix + ./gnome-dconf.nix ../../common/dotfiles/git.nix ../../common/dotfiles/neovim.nix ../../common/dotfiles/bash.nix