├── .config ├── home-manager │ ├── features │ │ ├── chromium.nix │ │ ├── default-applications.nix │ │ ├── editor.nix │ │ ├── environment.nix │ │ ├── extra-desktop-files.nix │ │ ├── firefox.nix │ │ ├── fuzzel.nix │ │ ├── gammastep.nix │ │ ├── google-drive.nix │ │ ├── gtklock.nix │ │ ├── hitbox.nix │ │ ├── hyprland.nix │ │ ├── hyprpaper.nix │ │ ├── mako.nix │ │ ├── mpd.nix │ │ ├── packages.nix │ │ ├── ranger.nix │ │ ├── rofi.nix │ │ ├── screenshot.nix │ │ ├── shell.nix │ │ ├── terminal.nix │ │ ├── theme.nix │ │ ├── vscode.nix │ │ ├── waybar.nix │ │ └── wlogout.nix │ ├── files │ │ ├── assets │ │ │ ├── hitbox.py │ │ │ ├── me.jpg │ │ │ ├── nixos-icon.svg │ │ │ └── wallpaper-list │ │ ├── wallpapers │ │ │ └── default.png │ │ └── wlogout-icons │ │ │ ├── lock.png │ │ │ ├── reboot.png │ │ │ └── shutdown.png │ ├── flake.lock │ ├── flake.nix │ ├── home.nix │ └── packages │ │ ├── hyprevents.nix │ │ └── hyprprop.nix └── nixos │ ├── default-configuration.nix │ ├── desktop-configuration.nix │ ├── features │ ├── boot.nix │ ├── display-default.nix │ ├── display-desktop.nix │ ├── gpu-amd.nix │ ├── gpu-default.nix │ ├── hyprland.nix │ ├── locale.nix │ ├── networking.nix │ ├── nixsur-plymouth-theme │ │ ├── default.nix │ │ └── nixsur.tar.gz │ ├── printer.nix │ ├── users.nix │ └── virtualization.nix │ ├── flake.lock │ ├── flake.nix │ └── laptop-configuration.nix ├── .gitignore ├── LICENSE ├── README.md └── Templates ├── bash-script.sh ├── excel-spreadsheet.xlsx ├── powerpoint-presentation.pptx ├── python-script.py └── word-document.docx /.config/home-manager/features/chromium.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/chromium.nix -------------------------------------------------------------------------------- /.config/home-manager/features/default-applications.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/default-applications.nix -------------------------------------------------------------------------------- /.config/home-manager/features/editor.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/editor.nix -------------------------------------------------------------------------------- /.config/home-manager/features/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/environment.nix -------------------------------------------------------------------------------- /.config/home-manager/features/extra-desktop-files.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/extra-desktop-files.nix -------------------------------------------------------------------------------- /.config/home-manager/features/firefox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/firefox.nix -------------------------------------------------------------------------------- /.config/home-manager/features/fuzzel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/fuzzel.nix -------------------------------------------------------------------------------- /.config/home-manager/features/gammastep.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/gammastep.nix -------------------------------------------------------------------------------- /.config/home-manager/features/google-drive.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/google-drive.nix -------------------------------------------------------------------------------- /.config/home-manager/features/gtklock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/gtklock.nix -------------------------------------------------------------------------------- /.config/home-manager/features/hitbox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/hitbox.nix -------------------------------------------------------------------------------- /.config/home-manager/features/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/hyprland.nix -------------------------------------------------------------------------------- /.config/home-manager/features/hyprpaper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/hyprpaper.nix -------------------------------------------------------------------------------- /.config/home-manager/features/mako.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/mako.nix -------------------------------------------------------------------------------- /.config/home-manager/features/mpd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/mpd.nix -------------------------------------------------------------------------------- /.config/home-manager/features/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/packages.nix -------------------------------------------------------------------------------- /.config/home-manager/features/ranger.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/ranger.nix -------------------------------------------------------------------------------- /.config/home-manager/features/rofi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/rofi.nix -------------------------------------------------------------------------------- /.config/home-manager/features/screenshot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/screenshot.nix -------------------------------------------------------------------------------- /.config/home-manager/features/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/shell.nix -------------------------------------------------------------------------------- /.config/home-manager/features/terminal.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/terminal.nix -------------------------------------------------------------------------------- /.config/home-manager/features/theme.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/theme.nix -------------------------------------------------------------------------------- /.config/home-manager/features/vscode.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/vscode.nix -------------------------------------------------------------------------------- /.config/home-manager/features/waybar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/waybar.nix -------------------------------------------------------------------------------- /.config/home-manager/features/wlogout.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/features/wlogout.nix -------------------------------------------------------------------------------- /.config/home-manager/files/assets/hitbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/files/assets/hitbox.py -------------------------------------------------------------------------------- /.config/home-manager/files/assets/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/files/assets/me.jpg -------------------------------------------------------------------------------- /.config/home-manager/files/assets/nixos-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/files/assets/nixos-icon.svg -------------------------------------------------------------------------------- /.config/home-manager/files/assets/wallpaper-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/files/assets/wallpaper-list -------------------------------------------------------------------------------- /.config/home-manager/files/wallpapers/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/files/wallpapers/default.png -------------------------------------------------------------------------------- /.config/home-manager/files/wlogout-icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/files/wlogout-icons/lock.png -------------------------------------------------------------------------------- /.config/home-manager/files/wlogout-icons/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/files/wlogout-icons/reboot.png -------------------------------------------------------------------------------- /.config/home-manager/files/wlogout-icons/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/files/wlogout-icons/shutdown.png -------------------------------------------------------------------------------- /.config/home-manager/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/flake.lock -------------------------------------------------------------------------------- /.config/home-manager/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/flake.nix -------------------------------------------------------------------------------- /.config/home-manager/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/home.nix -------------------------------------------------------------------------------- /.config/home-manager/packages/hyprevents.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/packages/hyprevents.nix -------------------------------------------------------------------------------- /.config/home-manager/packages/hyprprop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/home-manager/packages/hyprprop.nix -------------------------------------------------------------------------------- /.config/nixos/default-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/default-configuration.nix -------------------------------------------------------------------------------- /.config/nixos/desktop-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/desktop-configuration.nix -------------------------------------------------------------------------------- /.config/nixos/features/boot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/boot.nix -------------------------------------------------------------------------------- /.config/nixos/features/display-default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/display-default.nix -------------------------------------------------------------------------------- /.config/nixos/features/display-desktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/display-desktop.nix -------------------------------------------------------------------------------- /.config/nixos/features/gpu-amd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/gpu-amd.nix -------------------------------------------------------------------------------- /.config/nixos/features/gpu-default.nix: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /.config/nixos/features/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/hyprland.nix -------------------------------------------------------------------------------- /.config/nixos/features/locale.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/locale.nix -------------------------------------------------------------------------------- /.config/nixos/features/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/networking.nix -------------------------------------------------------------------------------- /.config/nixos/features/nixsur-plymouth-theme/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/nixsur-plymouth-theme/default.nix -------------------------------------------------------------------------------- /.config/nixos/features/nixsur-plymouth-theme/nixsur.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/nixsur-plymouth-theme/nixsur.tar.gz -------------------------------------------------------------------------------- /.config/nixos/features/printer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/printer.nix -------------------------------------------------------------------------------- /.config/nixos/features/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/features/users.nix -------------------------------------------------------------------------------- /.config/nixos/features/virtualization.nix: -------------------------------------------------------------------------------- 1 | { 2 | virtualisation.libvirtd.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /.config/nixos/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/flake.lock -------------------------------------------------------------------------------- /.config/nixos/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/flake.nix -------------------------------------------------------------------------------- /.config/nixos/laptop-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.config/nixos/laptop-configuration.nix -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/README.md -------------------------------------------------------------------------------- /Templates/bash-script.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | -------------------------------------------------------------------------------- /Templates/excel-spreadsheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/Templates/excel-spreadsheet.xlsx -------------------------------------------------------------------------------- /Templates/powerpoint-presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/Templates/powerpoint-presentation.pptx -------------------------------------------------------------------------------- /Templates/python-script.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | -------------------------------------------------------------------------------- /Templates/word-document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianWSmith/nix-config/HEAD/Templates/word-document.docx --------------------------------------------------------------------------------