├── .gitignore ├── README.md ├── art ├── the-technomancer.jpg └── the-technomancer.png ├── colors.nix ├── configuration.nix ├── conky ├── conky-conf.nix └── conky.nix ├── i3config-extra-example.nix ├── i3wm ├── i3config.nix ├── i3status.nix └── result ├── paper-gtk2-theme.nix ├── rice.nix ├── rofi ├── rofi-conf.nix └── rofi.nix ├── scrot1.png ├── scrot2.png ├── urxvt ├── urxvt-conf.nix └── urxvt.nix └── utils └── gtk2Theme.nix /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | result 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/README.md -------------------------------------------------------------------------------- /art/the-technomancer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/art/the-technomancer.jpg -------------------------------------------------------------------------------- /art/the-technomancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/art/the-technomancer.png -------------------------------------------------------------------------------- /colors.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/colors.nix -------------------------------------------------------------------------------- /configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/configuration.nix -------------------------------------------------------------------------------- /conky/conky-conf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/conky/conky-conf.nix -------------------------------------------------------------------------------- /conky/conky.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/conky/conky.nix -------------------------------------------------------------------------------- /i3config-extra-example.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/i3config-extra-example.nix -------------------------------------------------------------------------------- /i3wm/i3config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/i3wm/i3config.nix -------------------------------------------------------------------------------- /i3wm/i3status.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/i3wm/i3status.nix -------------------------------------------------------------------------------- /i3wm/result: -------------------------------------------------------------------------------- 1 | /nix/store/il97wywvgvc85wvdsr95fs3fv8c2s6jr-nixos-vm -------------------------------------------------------------------------------- /paper-gtk2-theme.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/paper-gtk2-theme.nix -------------------------------------------------------------------------------- /rice.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/rice.nix -------------------------------------------------------------------------------- /rofi/rofi-conf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/rofi/rofi-conf.nix -------------------------------------------------------------------------------- /rofi/rofi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/rofi/rofi.nix -------------------------------------------------------------------------------- /scrot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/scrot1.png -------------------------------------------------------------------------------- /scrot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/scrot2.png -------------------------------------------------------------------------------- /urxvt/urxvt-conf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/urxvt/urxvt-conf.nix -------------------------------------------------------------------------------- /urxvt/urxvt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/urxvt/urxvt.nix -------------------------------------------------------------------------------- /utils/gtk2Theme.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanipintjuk/immutable-rice/HEAD/utils/gtk2Theme.nix --------------------------------------------------------------------------------