├── flake.lock ├── flake.nix ├── home-manager ├── home.nix ├── modules │ ├── ags │ │ ├── .gitignore │ │ ├── app.ts │ │ ├── common │ │ │ ├── Button.tsx │ │ │ ├── PopupWindow.tsx │ │ │ └── Types.tsx │ │ ├── default.nix │ │ ├── env.d.ts │ │ ├── lib │ │ │ ├── fetch.ts │ │ │ ├── icons.ts │ │ │ ├── utils.ts │ │ │ └── variables.ts │ │ ├── lockscreen │ │ │ ├── app.tsx │ │ │ └── items │ │ │ │ ├── Auth.tsx │ │ │ │ └── StatusBar.tsx │ │ ├── service │ │ │ ├── Brightness.ts │ │ │ ├── FanProfiles.ts │ │ │ ├── GoogleOAuth2.ts │ │ │ ├── GoogleTasks.ts │ │ │ ├── LocalTodos.ts │ │ │ ├── PlayerColors.ts │ │ │ ├── Powermenu.ts │ │ │ ├── ScreenRecord.ts │ │ │ └── Weather.ts │ │ ├── style │ │ │ ├── appLauncher.scss │ │ │ ├── bar.scss │ │ │ ├── colors.scss │ │ │ ├── common.scss │ │ │ ├── components.scss │ │ │ ├── controlCenter.scss │ │ │ ├── dashboard.scss │ │ │ ├── main.scss │ │ │ ├── notification.scss │ │ │ ├── notificationsPopup.scss │ │ │ ├── notificationsWindow.scss │ │ │ ├── osd.scss │ │ │ ├── player.scss │ │ │ ├── popupMenu.scss │ │ │ ├── powermenu.scss │ │ │ └── scrim.scss │ │ ├── tsconfig.json │ │ └── widget │ │ │ ├── AppLauncher │ │ │ ├── AppItem.tsx │ │ │ └── index.tsx │ │ │ ├── Bar │ │ │ ├── BarButton.tsx │ │ │ ├── BarItem.tsx │ │ │ ├── index.tsx │ │ │ └── items │ │ │ │ ├── ActiveApp.tsx │ │ │ │ ├── AppLauncher.tsx │ │ │ │ ├── Battery.tsx │ │ │ │ ├── Clock.tsx │ │ │ │ ├── KeyboardLayout.tsx │ │ │ │ ├── Notifications.tsx │ │ │ │ ├── RecordingIndicator.tsx │ │ │ │ ├── SystemIndicators.tsx │ │ │ │ ├── Tray.tsx │ │ │ │ ├── Weather.tsx │ │ │ │ ├── Workspaces.tsx │ │ │ │ └── WpActive.tsx │ │ │ ├── ControlCenter │ │ │ ├── ControlCenterButton.tsx │ │ │ ├── Page.tsx │ │ │ ├── index.tsx │ │ │ ├── items │ │ │ │ ├── Bluetooth.tsx │ │ │ │ ├── Brightness.tsx │ │ │ │ ├── ColorScheme.tsx │ │ │ │ ├── DND.tsx │ │ │ │ ├── FanProfile.tsx │ │ │ │ ├── Media.tsx │ │ │ │ ├── Microphone.tsx │ │ │ │ ├── Network.tsx │ │ │ │ ├── ScreenRecord.tsx │ │ │ │ ├── ScreenRecordMenu.tsx │ │ │ │ └── Volume.tsx │ │ │ └── pages │ │ │ │ ├── Bluetooth.tsx │ │ │ │ ├── FanProfiles.tsx │ │ │ │ ├── Main.tsx │ │ │ │ └── Network.tsx │ │ │ ├── Dashboard │ │ │ ├── index.tsx │ │ │ └── items │ │ │ │ ├── Calendar │ │ │ │ ├── Layout.ts │ │ │ │ └── index.tsx │ │ │ │ └── Todos.tsx │ │ │ ├── Notifications │ │ │ ├── Notification.tsx │ │ │ ├── NotificationsPopup.tsx │ │ │ └── index.tsx │ │ │ ├── OSD │ │ │ ├── Progress.tsx │ │ │ └── index.tsx │ │ │ ├── Popups │ │ │ ├── PopupMenu.tsx │ │ │ └── menus │ │ │ │ ├── Mixer.tsx │ │ │ │ └── Sink.tsx │ │ │ ├── Powermenu │ │ │ ├── Verification.tsx │ │ │ └── index.tsx │ │ │ └── Scrims │ │ │ ├── Scrim.tsx │ │ │ └── TransparentScrim.tsx │ ├── chromium.nix │ ├── fish.nix │ ├── git.nix │ ├── hyprland │ │ ├── animations.conf │ │ ├── autostart.conf │ │ ├── bin │ │ │ ├── clipboard.sh │ │ │ ├── handle_monitor_connect.sh │ │ │ ├── ocr.sh │ │ │ ├── portals.sh │ │ │ └── swww.sh │ │ ├── colors.conf │ │ ├── default.nix │ │ ├── hypridle.conf │ │ ├── hyprland.conf │ │ ├── hyprlock.conf │ │ ├── hyprpaper.conf │ │ ├── input.conf │ │ ├── keybindings.conf │ │ ├── layerrules.conf │ │ ├── monitors.conf │ │ └── windowrules.conf │ ├── hyprlock.nix │ ├── matugen │ │ ├── config.toml │ │ └── templates │ │ │ ├── ags.scss │ │ │ ├── foot.ini │ │ │ ├── gtk.css │ │ │ ├── gtklock.css │ │ │ ├── hypr.conf │ │ │ ├── hyprlock.conf │ │ │ ├── kitty.conf │ │ │ ├── yazi.toml │ │ │ ├── zathura │ │ │ └── zed.json │ ├── nvim │ │ ├── autocommands.nix │ │ ├── completion.nix │ │ ├── default.nix │ │ ├── keymappings.nix │ │ ├── options.nix │ │ ├── plugins │ │ │ ├── barbar.nix │ │ │ ├── comment.nix │ │ │ ├── default.nix │ │ │ ├── efm.nix │ │ │ ├── lsp.nix │ │ │ ├── lualine.nix │ │ │ ├── noice.nix │ │ │ ├── nvimtree.nix │ │ │ ├── telescope.nix │ │ │ ├── treesitter.nix │ │ │ └── vimtex.nix │ │ └── todo.nix │ ├── theme.nix │ └── tmux.nix └── packages.nix ├── hosts ├── hardware │ ├── laptop.nix │ └── work.nix ├── laptop.nix ├── modules │ ├── hyprland.nix │ ├── locale.nix │ └── substituters.nix ├── shared.nix └── work.nix ├── pkgs ├── 3dstool │ ├── default.nix │ └── derivation.nix ├── anilabx-max │ ├── default.nix │ └── derivation.nix ├── ctrtool │ ├── default.nix │ └── derivation.nix ├── custom-install │ ├── default.nix │ └── derivation.nix ├── cutentr │ ├── default.nix │ └── derivation.nix ├── hyprsettings │ ├── default.nix │ ├── derivation.nix │ ├── result │ └── shell.nix ├── kurrimu2 │ ├── default.nix │ ├── deps.nix │ └── derivation.nix ├── makerom │ ├── default.nix │ └── derivation.nix ├── nekoray │ └── derivation.nix ├── save3ds │ ├── default.nix │ └── derivation.nix └── scanoval │ ├── default.nix │ └── derivation.nix ├── result └── shells └── rider-fhs.nix /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/flake.nix -------------------------------------------------------------------------------- /home-manager/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/home.nix -------------------------------------------------------------------------------- /home-manager/modules/ags/.gitignore: -------------------------------------------------------------------------------- 1 | @girs/ 2 | node_modules/ -------------------------------------------------------------------------------- /home-manager/modules/ags/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/app.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/common/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/common/Button.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/common/PopupWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/common/PopupWindow.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/common/Types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/common/Types.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/default.nix -------------------------------------------------------------------------------- /home-manager/modules/ags/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/env.d.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/lib/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/lib/fetch.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/lib/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/lib/icons.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/lib/utils.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/lib/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/lib/variables.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/lockscreen/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/lockscreen/app.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/lockscreen/items/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/lockscreen/items/Auth.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/lockscreen/items/StatusBar.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home-manager/modules/ags/service/Brightness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/service/Brightness.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/service/FanProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/service/FanProfiles.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/service/GoogleOAuth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/service/GoogleOAuth2.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/service/GoogleTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/service/GoogleTasks.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/service/LocalTodos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/service/LocalTodos.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/service/PlayerColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/service/PlayerColors.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/service/Powermenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/service/Powermenu.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/service/ScreenRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/service/ScreenRecord.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/service/Weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/service/Weather.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/style/appLauncher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/appLauncher.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/bar.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/colors.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/common.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/components.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/controlCenter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/controlCenter.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/dashboard.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/main.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/notification.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/notificationsPopup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/notificationsPopup.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/notificationsWindow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/notificationsWindow.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/osd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/osd.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/player.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/popupMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/popupMenu.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/powermenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/powermenu.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/style/scrim.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/style/scrim.scss -------------------------------------------------------------------------------- /home-manager/modules/ags/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/tsconfig.json -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/AppLauncher/AppItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/AppLauncher/AppItem.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/AppLauncher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/AppLauncher/index.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/BarButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/BarButton.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/BarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/BarItem.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/index.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/ActiveApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/ActiveApp.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/AppLauncher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/AppLauncher.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/Battery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/Battery.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/Clock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/Clock.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/KeyboardLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/KeyboardLayout.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/Notifications.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/RecordingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/RecordingIndicator.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/SystemIndicators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/SystemIndicators.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/Tray.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/Tray.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/Weather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/Weather.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/Workspaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/Workspaces.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Bar/items/WpActive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Bar/items/WpActive.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/ControlCenterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/ControlCenterButton.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/Page.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/index.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/Bluetooth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/Bluetooth.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/Brightness.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/Brightness.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/ColorScheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/ColorScheme.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/DND.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/DND.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/FanProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/FanProfile.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/Media.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/Media.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/Microphone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/Microphone.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/Network.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/Network.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/ScreenRecord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/ScreenRecord.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/ScreenRecordMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/ScreenRecordMenu.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/items/Volume.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/items/Volume.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/pages/Bluetooth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/pages/Bluetooth.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/pages/FanProfiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/pages/FanProfiles.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/pages/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/pages/Main.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/ControlCenter/pages/Network.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/ControlCenter/pages/Network.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Dashboard/index.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Dashboard/items/Calendar/Layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Dashboard/items/Calendar/Layout.ts -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Dashboard/items/Calendar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Dashboard/items/Calendar/index.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Dashboard/items/Todos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Dashboard/items/Todos.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Notifications/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Notifications/Notification.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Notifications/NotificationsPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Notifications/NotificationsPopup.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Notifications/index.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/OSD/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/OSD/Progress.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/OSD/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/OSD/index.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Popups/PopupMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Popups/PopupMenu.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Popups/menus/Mixer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Popups/menus/Mixer.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Popups/menus/Sink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Popups/menus/Sink.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Powermenu/Verification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Powermenu/Verification.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Powermenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Powermenu/index.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Scrims/Scrim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Scrims/Scrim.tsx -------------------------------------------------------------------------------- /home-manager/modules/ags/widget/Scrims/TransparentScrim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/ags/widget/Scrims/TransparentScrim.tsx -------------------------------------------------------------------------------- /home-manager/modules/chromium.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/chromium.nix -------------------------------------------------------------------------------- /home-manager/modules/fish.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/fish.nix -------------------------------------------------------------------------------- /home-manager/modules/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/git.nix -------------------------------------------------------------------------------- /home-manager/modules/hyprland/animations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/animations.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/autostart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/autostart.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/bin/clipboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/bin/clipboard.sh -------------------------------------------------------------------------------- /home-manager/modules/hyprland/bin/handle_monitor_connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/bin/handle_monitor_connect.sh -------------------------------------------------------------------------------- /home-manager/modules/hyprland/bin/ocr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/bin/ocr.sh -------------------------------------------------------------------------------- /home-manager/modules/hyprland/bin/portals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/bin/portals.sh -------------------------------------------------------------------------------- /home-manager/modules/hyprland/bin/swww.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/bin/swww.sh -------------------------------------------------------------------------------- /home-manager/modules/hyprland/colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/colors.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/default.nix -------------------------------------------------------------------------------- /home-manager/modules/hyprland/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/hypridle.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/hyprland.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/hyprlock.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/hyprpaper.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/input.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/keybindings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/keybindings.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/layerrules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/layerrules.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/monitors.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprland/windowrules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprland/windowrules.conf -------------------------------------------------------------------------------- /home-manager/modules/hyprlock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/hyprlock.nix -------------------------------------------------------------------------------- /home-manager/modules/matugen/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/config.toml -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/ags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/ags.scss -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/foot.ini -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/gtk.css -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/gtklock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/gtklock.css -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/hypr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/hypr.conf -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/hyprlock.conf -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/kitty.conf -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/yazi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/yazi.toml -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/zathura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/zathura -------------------------------------------------------------------------------- /home-manager/modules/matugen/templates/zed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/matugen/templates/zed.json -------------------------------------------------------------------------------- /home-manager/modules/nvim/autocommands.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/autocommands.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/completion.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/completion.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/default.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/keymappings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/keymappings.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/options.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/barbar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/barbar.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/comment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/comment.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/default.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/efm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/efm.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/lsp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/lsp.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/lualine.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/lualine.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/noice.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/noice.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/nvimtree.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/nvimtree.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/telescope.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/telescope.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/treesitter.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/treesitter.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/plugins/vimtex.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/plugins/vimtex.nix -------------------------------------------------------------------------------- /home-manager/modules/nvim/todo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/nvim/todo.nix -------------------------------------------------------------------------------- /home-manager/modules/theme.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/theme.nix -------------------------------------------------------------------------------- /home-manager/modules/tmux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/modules/tmux.nix -------------------------------------------------------------------------------- /home-manager/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/home-manager/packages.nix -------------------------------------------------------------------------------- /hosts/hardware/laptop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/hosts/hardware/laptop.nix -------------------------------------------------------------------------------- /hosts/hardware/work.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/hosts/hardware/work.nix -------------------------------------------------------------------------------- /hosts/laptop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/hosts/laptop.nix -------------------------------------------------------------------------------- /hosts/modules/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/hosts/modules/hyprland.nix -------------------------------------------------------------------------------- /hosts/modules/locale.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/hosts/modules/locale.nix -------------------------------------------------------------------------------- /hosts/modules/substituters.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/hosts/modules/substituters.nix -------------------------------------------------------------------------------- /hosts/shared.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/hosts/shared.nix -------------------------------------------------------------------------------- /hosts/work.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/hosts/work.nix -------------------------------------------------------------------------------- /pkgs/3dstool/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/3dstool/default.nix -------------------------------------------------------------------------------- /pkgs/3dstool/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/3dstool/derivation.nix -------------------------------------------------------------------------------- /pkgs/anilabx-max/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/anilabx-max/default.nix -------------------------------------------------------------------------------- /pkgs/anilabx-max/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/anilabx-max/derivation.nix -------------------------------------------------------------------------------- /pkgs/ctrtool/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/ctrtool/default.nix -------------------------------------------------------------------------------- /pkgs/ctrtool/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/ctrtool/derivation.nix -------------------------------------------------------------------------------- /pkgs/custom-install/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/custom-install/default.nix -------------------------------------------------------------------------------- /pkgs/custom-install/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/custom-install/derivation.nix -------------------------------------------------------------------------------- /pkgs/cutentr/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/cutentr/default.nix -------------------------------------------------------------------------------- /pkgs/cutentr/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/cutentr/derivation.nix -------------------------------------------------------------------------------- /pkgs/hyprsettings/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/hyprsettings/default.nix -------------------------------------------------------------------------------- /pkgs/hyprsettings/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/hyprsettings/derivation.nix -------------------------------------------------------------------------------- /pkgs/hyprsettings/result: -------------------------------------------------------------------------------- 1 | /nix/store/fkanpvmb174xdq46rhcd0x5yydap7gpi-hyprsettings-0.0.1 -------------------------------------------------------------------------------- /pkgs/hyprsettings/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/hyprsettings/shell.nix -------------------------------------------------------------------------------- /pkgs/kurrimu2/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/kurrimu2/default.nix -------------------------------------------------------------------------------- /pkgs/kurrimu2/deps.nix: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/kurrimu2/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/kurrimu2/derivation.nix -------------------------------------------------------------------------------- /pkgs/makerom/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/makerom/default.nix -------------------------------------------------------------------------------- /pkgs/makerom/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/makerom/derivation.nix -------------------------------------------------------------------------------- /pkgs/nekoray/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/nekoray/derivation.nix -------------------------------------------------------------------------------- /pkgs/save3ds/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/save3ds/default.nix -------------------------------------------------------------------------------- /pkgs/save3ds/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/save3ds/derivation.nix -------------------------------------------------------------------------------- /pkgs/scanoval/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/scanoval/default.nix -------------------------------------------------------------------------------- /pkgs/scanoval/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/pkgs/scanoval/derivation.nix -------------------------------------------------------------------------------- /result: -------------------------------------------------------------------------------- 1 | /nix/store/74p3vp4nx7r2c6js2w3rzxxz6hdyhl0g-nixos-system-posaydone-laptop-25.05.20250108.bffc22e -------------------------------------------------------------------------------- /shells/rider-fhs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoSayDone/.dotfiles_nix/HEAD/shells/rider-fhs.nix --------------------------------------------------------------------------------