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
|
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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue