├── .envrc ├── .github └── workflows │ ├── ci.yaml │ └── update-flake-lock.yaml ├── .gitignore ├── LICENSE ├── README.md ├── configurations ├── darwin │ └── example.nix ├── home │ └── runner.nix └── nixos │ └── example │ ├── configuration.nix │ └── default.nix ├── flake.lock ├── flake.nix ├── justfile ├── modules ├── darwin │ ├── common │ └── default.nix ├── flake │ ├── activate-home.nix │ ├── devshell.nix │ ├── neovim.nix │ ├── template.nix │ └── toplevel.nix ├── home │ ├── default.nix │ ├── direnv.nix │ ├── gc.nix │ ├── git.nix │ ├── me.nix │ ├── neovim │ │ ├── default.nix │ │ └── nixvim.nix │ ├── nix-index.nix │ ├── nix.nix │ ├── packages.nix │ ├── shell.nix │ └── work.nix └── nixos │ ├── common │ ├── default.nix │ └── myusers.nix │ ├── default.nix │ └── gui │ ├── default.nix │ └── gnome.nix └── vira.hs /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/.envrc -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/update-flake-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/.github/workflows/update-flake-lock.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | result 2 | .direnv 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/README.md -------------------------------------------------------------------------------- /configurations/darwin/example.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/configurations/darwin/example.nix -------------------------------------------------------------------------------- /configurations/home/runner.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/configurations/home/runner.nix -------------------------------------------------------------------------------- /configurations/nixos/example/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/configurations/nixos/example/configuration.nix -------------------------------------------------------------------------------- /configurations/nixos/example/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/configurations/nixos/example/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/justfile -------------------------------------------------------------------------------- /modules/darwin/common: -------------------------------------------------------------------------------- 1 | ../nixos/common -------------------------------------------------------------------------------- /modules/darwin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/darwin/default.nix -------------------------------------------------------------------------------- /modules/flake/activate-home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/flake/activate-home.nix -------------------------------------------------------------------------------- /modules/flake/devshell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/flake/devshell.nix -------------------------------------------------------------------------------- /modules/flake/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/flake/neovim.nix -------------------------------------------------------------------------------- /modules/flake/template.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/flake/template.nix -------------------------------------------------------------------------------- /modules/flake/toplevel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/flake/toplevel.nix -------------------------------------------------------------------------------- /modules/home/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/default.nix -------------------------------------------------------------------------------- /modules/home/direnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/direnv.nix -------------------------------------------------------------------------------- /modules/home/gc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/gc.nix -------------------------------------------------------------------------------- /modules/home/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/git.nix -------------------------------------------------------------------------------- /modules/home/me.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/me.nix -------------------------------------------------------------------------------- /modules/home/neovim/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/neovim/default.nix -------------------------------------------------------------------------------- /modules/home/neovim/nixvim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/neovim/nixvim.nix -------------------------------------------------------------------------------- /modules/home/nix-index.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/nix-index.nix -------------------------------------------------------------------------------- /modules/home/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/nix.nix -------------------------------------------------------------------------------- /modules/home/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/packages.nix -------------------------------------------------------------------------------- /modules/home/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/shell.nix -------------------------------------------------------------------------------- /modules/home/work.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/home/work.nix -------------------------------------------------------------------------------- /modules/nixos/common/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/nixos/common/default.nix -------------------------------------------------------------------------------- /modules/nixos/common/myusers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/nixos/common/myusers.nix -------------------------------------------------------------------------------- /modules/nixos/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/nixos/default.nix -------------------------------------------------------------------------------- /modules/nixos/gui/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/nixos/gui/default.nix -------------------------------------------------------------------------------- /modules/nixos/gui/gnome.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/modules/nixos/gui/gnome.nix -------------------------------------------------------------------------------- /vira.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/nixos-unified-template/HEAD/vira.hs --------------------------------------------------------------------------------