move back to gnome and add some documentation
This commit is contained in:
parent
e5aabc6494
commit
9fa9b0c798
4 changed files with 10 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -9,8 +9,7 @@
|
|||
[
|
||||
# Desktop Environments
|
||||
./desktops/common.nix
|
||||
./desktops/kde.nix
|
||||
# ./desktops/gnome.nix
|
||||
./desktops/gnome.nix
|
||||
|
||||
# Services
|
||||
./services/openssh.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
|
||||
|
|
Loading…
Reference in a new issue