Sigmanificient / dotfiles

:wrench: My configuration files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NixOS

❖ Sigma's Dotfiles ❖

GitHub Repo stars GitHub last commit GitHub repo size

Configuration files for my GNU+Linux system.

Repository Banner Qtile has floating window support

🔧 INSTALLATION

📎 Standard

Warning Some additional configuration may be required

I. Clone the repository

Note I personally clone the repository as my home1.

git clone https://github.com/Sigmanificient/dotfiles.git --recurse-submodules
cd dotfiles

II. Copy the configuration

cp -r .* ~

🌸 Nix

Copy the flake config

cp flake* ~

Note: Don't forget to edit the appropriate settings such as username & hardware configuration You can use cp /etc/nixos/hardware-configuration.nix .config/nixos/hardware-configuration.nix

sudo nixos-rebuild switch --flake '.'

Warning I do not use a display manager, use startx or setup your own display manager

📑 DETAILS

Qtile is a tiling window manager

Dev

Qtile is a tiling window manager

Other Utilities

Qtile is a tiling window manager

🎨 Colors

This color scheme is inspired from Catppuccin Mocha

tty

Black Red Green Yellow Blue Magenta Cyan White
0F0F1C D22942 17B67C F2A174 8B8AF1 D78AF1 4FCFEB B4C0EC
1A1C31 DE4259 3FD7A0 EEC09F A7A5FB E5A5FB 82E3F8 CAD3F5

cat

Footnotes

  1. Cloning as the home directory
    I. Bare Clone

    git clone --bare https://github.com/Sigmanificient/dotfiles.git $HOME/.git
    git --git-dir=$HOME/.git --work-tree=$HOME remote set-url origin git@github.com:Sigmanificient/dotfiles
    git config --local core.bare false
    

    II. Update

    git reset --hard HEAD
    git pull --rebase
    

    III. Submodules

    git submodule init
    git submodule update --init --force
    

    IV. Fix history

    git clone https://github.com/Sigmanificient/dotfiles.git tmp
    cp tmp/.git ~ -r
    git add .
    

About

:wrench: My configuration files

License:GNU General Public License v3.0


Languages

Language:Nix 44.0%Language:Python 23.0%Language:Lua 11.2%Language:Markdown 8.1%Language:Shell 3.8%Language:SVG 3.1%Language:JSON 2.1%Language:YAML 1.8%Language:INI 1.4%Language:XML 0.7%Language:Vim Script 0.6%